@@ -199,7 +199,6 @@ jobs:
199199 SCCACHE_S3_USE_SSL : " true"
200200 SCCACHE_S3_KEY_PREFIX : ci/android
201201 SCCACHE_LOG : info
202- SCCACHE_ERROR_LOG : ${{ runner.temp }}/sccache-android.log
203202 AWS_ACCESS_KEY_ID : ${{ secrets.SCCACHE_R2_ACCESS_KEY_ID }}
204203 AWS_SECRET_ACCESS_KEY : ${{ secrets.SCCACHE_R2_SECRET_ACCESS_KEY }}
205204
@@ -260,6 +259,7 @@ jobs:
260259
261260 - name : Prime sccache
262261 run : |
262+ export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-android.log"
263263 rm -f "$SCCACHE_ERROR_LOG"
264264 sccache --stop-server || true
265265 sccache --start-server
@@ -331,6 +331,7 @@ jobs:
331331 LITTER_VERSION_CODE_OVERRIDE : ${{ env.LITTER_VERSION_CODE_OVERRIDE }}
332332 run : |
333333 set -euo pipefail
334+ export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-android.log"
334335 trap 'status=$?; echo "==> sccache stats"; sccache --show-stats || true; if [ -f "$SCCACHE_ERROR_LOG" ]; then echo "==> sccache error log"; tail -200 "$SCCACHE_ERROR_LOG" || true; fi; exit $status' EXIT
335336 make play-release
336337
@@ -367,7 +368,6 @@ jobs:
367368 SCCACHE_S3_USE_SSL : " true"
368369 SCCACHE_S3_KEY_PREFIX : ci/ios
369370 SCCACHE_LOG : info
370- SCCACHE_ERROR_LOG : ${{ runner.temp }}/sccache-ios.log
371371 AWS_ACCESS_KEY_ID : ${{ secrets.SCCACHE_R2_ACCESS_KEY_ID }}
372372 AWS_SECRET_ACCESS_KEY : ${{ secrets.SCCACHE_R2_SECRET_ACCESS_KEY }}
373373
@@ -424,6 +424,7 @@ jobs:
424424
425425 - name : Prime sccache
426426 run : |
427+ export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-ios.log"
427428 rm -f "$SCCACHE_ERROR_LOG"
428429 sccache --stop-server || true
429430 sccache --start-server
@@ -521,5 +522,6 @@ jobs:
521522 WAIT_FOR_PROCESSING : ${{ env.WAIT_FOR_PROCESSING }}
522523 run : |
523524 set -euo pipefail
525+ export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-ios.log"
524526 trap 'status=$?; echo "==> sccache stats"; sccache --show-stats || true; if [ -f "$SCCACHE_ERROR_LOG" ]; then echo "==> sccache error log"; tail -200 "$SCCACHE_ERROR_LOG" || true; fi; exit $status' EXIT
525527 make testflight
0 commit comments