fix: update experiment to use different setup (#169728)

Use android-actions/setup-android even if its more verbose.
This commit is contained in:
John "codefu" McDole 2025-05-29 20:08:34 -07:00 committed by GitHub
parent 3b87537bbe
commit 351718d10b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ on:
pull_request:
branches: [master]
paths:
- '.github/workflows/tool-test-general.yml'
- 'dev/**'
- 'packages/flutter_tools/**'
- 'bin/**'
@ -32,9 +33,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 "platform-tools" "platforms;android-36" "build-tools;36.0.0"
- name: Checkout code
uses: actions/checkout@v4