Skip to content
Merged
Changes from 1 commit
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
Next Next commit
fix: update experiment to use different setup
Use android-actions/setup-android even if its more verbose.
  • Loading branch information
jtmcdole authored May 30, 2025
commit a03cd2ede363696f96aa4c1961a25e88657800af
10 changes: 8 additions & 2 deletions .github/workflows/tool-test-general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,15 @@ jobs:
# The following step is only run LOCALLY - Github runners have everything on them
- name: Setup Android SDK
if: ${{ env.ACT }}
uses: amyu/setup-android@v4
uses: android-actions/setup-android@9fc6c4e9069bf8d3d10b2204b1fb8f6ef7065407
with:
sdk-version: 36
cmdline-tools-version: 13114758

# The following step is only run LOCALLY - Github runners have everything on them
- name: install android
if: ${{ env.ACT }}
run: |
sdkmanager install "platform-tools" "platforms;android-36" "build-tools;36.0.0"

- name: Checkout code
uses: actions/checkout@v4
Expand Down
Loading