Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .github/workflows/scatterlab-prebuild-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@ jobs:
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/yarn-install

# The runner image ships no JDK, and `./gradlew` below needs one. Same version and
# distribution as the `prepare` job so both halves of this workflow build against
# the same toolchain.
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'

# Without a warm ccache every run is a full C++ rebuild of ReactCommon.
- name: Restore the Android ccache
uses: actions/cache/restore@v4
Expand Down