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: 5 additions & 3 deletions .github/workflows/android_build_unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,13 @@ jobs:

strategy:
matrix:
# Default to API 34 for speed; expand to 28/33/34 for PRs into master or all/regression suites
# Default to API 34 for speed; expand to 28/34 for PRs into master or all/regression suites
# Note: API 33 removed due to unreliable emulator boot issues on GitHub Actions
api-level: ${{ (
(github.event_name == 'workflow_dispatch' && (inputs.test_suite == 'all' || inputs.test_suite == 'regression')) ||
(github.event_name == 'pull_request' && github.base_ref == 'master') ||
(github.event_name == 'push' && github.ref == 'refs/heads/master')
) && fromJSON('[28, 33, 34]') || fromJSON('[34]') }}
) && fromJSON('[28, 34]') || fromJSON('[34]') }}
target: [ google_apis ]
arch: [ x86_64 ]
fail-fast: false
Expand Down Expand Up @@ -374,7 +375,8 @@ jobs:
strategy:
matrix:
# Regression tests always run on all API levels (comprehensive coverage)
api-level: [ 28, 33, 34 ]
# Note: API 33 removed due to unreliable emulator boot issues on GitHub Actions
api-level: [ 28, 34 ]
target: [ google_apis ]
arch: [ x86_64 ]
fail-fast: false
Expand Down
Loading