File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ kotlin.compiler.execution.strategy=in-process
88
99# Controls KotlinOptions.allWarningsAsErrors. This is used in CI and can be set in local properties.
1010warningsAsErrors =true
11+ file.encoding =utf-8
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ concurrency:
1414jobs :
1515 unitTest :
1616 name : Unit tests
17- runs-on : ubuntu-latest
17+ runs-on : self-hosted
1818 timeout-minutes : 60
1919
2020 steps :
@@ -43,19 +43,21 @@ jobs:
4343 key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
4444 restore-keys : |
4545 ${{ runner.os }}-gradle
46+
4647 - name : Set up Local properties keys
4748 run : |
4849 echo FIREBASE_API_KEY=\"${{ secrets.FIREBASE_API_KEY }}\" >> ./local.properties
4950 echo FIREBASE_APPLICATION_ID=\"${{ secrets.FIREBASE_APPLICATION_ID }}\" >> ./local.properties
5051 echo FIREBASE_CLIENT_ID=\"${{ secrets.FIREBASE_CLIENT_ID }}\" >> ./local.properties
5152 echo FIREBASE_DATABASE_URL=\"${{ secrets.FIREBASE_DATABASE_URL }}\" >> ./local.properties
5253 echo FIREBASE_PROJECT_ID=\"${{ secrets.FIREBASE_PROJECT_ID }}\" >> ./local.properties
53-
54+ echo sdk.dir=\/home\/stslex\/actions-runner\/_work\/android-sdk >> ./local.properties
55+
5456 - name : Run local tests
5557 run : ./gradlew testDebug --stacktrace
5658
5759 - name : Publish Test Results
5860 uses : EnricoMi/publish-unit-test-result-action@v1
5961 if : always()
6062 with :
61- files : " **/build/test-results/**/*.xml"
63+ files : " **/build/test-results/**/*.xml"
You can’t perform that action at this time.
0 commit comments