Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/android-play-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ jobs:
SCCACHE_S3_USE_SSL: "true"
SCCACHE_S3_KEY_PREFIX: ci/android
SCCACHE_LOG: info
SCCACHE_ERROR_LOG: ${{ runner.temp }}/sccache-android.log
AWS_ACCESS_KEY_ID: ${{ secrets.SCCACHE_R2_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SCCACHE_R2_SECRET_ACCESS_KEY }}

Expand Down Expand Up @@ -154,6 +153,7 @@ jobs:

- name: Prime sccache
run: |
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-android.log"
rm -f "$SCCACHE_ERROR_LOG"
sccache --stop-server || true
sccache --start-server
Expand Down Expand Up @@ -225,6 +225,7 @@ jobs:
LITTER_VERSION_CODE_OVERRIDE: ${{ env.LITTER_VERSION_CODE_OVERRIDE }}
run: |
set -euo pipefail
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-android.log"
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
make play-release

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ios-testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
SCCACHE_S3_USE_SSL: "true"
SCCACHE_S3_KEY_PREFIX: ci/ios
SCCACHE_LOG: info
SCCACHE_ERROR_LOG: ${{ runner.temp }}/sccache-ios.log
AWS_ACCESS_KEY_ID: ${{ secrets.SCCACHE_R2_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SCCACHE_R2_SECRET_ACCESS_KEY }}

Expand Down Expand Up @@ -87,6 +86,7 @@ jobs:

- name: Prime sccache
run: |
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-ios.log"
rm -f "$SCCACHE_ERROR_LOG"
sccache --stop-server || true
sccache --start-server
Expand Down Expand Up @@ -177,5 +177,6 @@ jobs:
WAIT_FOR_PROCESSING: ${{ env.WAIT_FOR_PROCESSING }}
run: |
set -euo pipefail
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-ios.log"
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
make testflight
6 changes: 4 additions & 2 deletions .github/workflows/mobile-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ jobs:
SCCACHE_S3_USE_SSL: "true"
SCCACHE_S3_KEY_PREFIX: ci/android
SCCACHE_LOG: info
SCCACHE_ERROR_LOG: ${{ runner.temp }}/sccache-android.log
AWS_ACCESS_KEY_ID: ${{ secrets.SCCACHE_R2_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SCCACHE_R2_SECRET_ACCESS_KEY }}

Expand Down Expand Up @@ -260,6 +259,7 @@ jobs:

- name: Prime sccache
run: |
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-android.log"
rm -f "$SCCACHE_ERROR_LOG"
sccache --stop-server || true
sccache --start-server
Expand Down Expand Up @@ -331,6 +331,7 @@ jobs:
LITTER_VERSION_CODE_OVERRIDE: ${{ env.LITTER_VERSION_CODE_OVERRIDE }}
run: |
set -euo pipefail
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-android.log"
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
make play-release

Expand Down Expand Up @@ -367,7 +368,6 @@ jobs:
SCCACHE_S3_USE_SSL: "true"
SCCACHE_S3_KEY_PREFIX: ci/ios
SCCACHE_LOG: info
SCCACHE_ERROR_LOG: ${{ runner.temp }}/sccache-ios.log
AWS_ACCESS_KEY_ID: ${{ secrets.SCCACHE_R2_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SCCACHE_R2_SECRET_ACCESS_KEY }}

Expand Down Expand Up @@ -424,6 +424,7 @@ jobs:

- name: Prime sccache
run: |
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-ios.log"
rm -f "$SCCACHE_ERROR_LOG"
sccache --stop-server || true
sccache --start-server
Expand Down Expand Up @@ -521,5 +522,6 @@ jobs:
WAIT_FOR_PROCESSING: ${{ env.WAIT_FOR_PROCESSING }}
run: |
set -euo pipefail
export SCCACHE_ERROR_LOG="$RUNNER_TEMP/sccache-ios.log"
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
make testflight