Skip to content

Commit

Permalink
Merge 85326e8 into 88f290b
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich authored Oct 21, 2024
2 parents 88f290b + 85326e8 commit f93b11b
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions .github/workflows/integration-tests-ui-critical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:

jobs:
build:
name: Build sentry-uitest-android-critical
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down Expand Up @@ -47,9 +47,29 @@ jobs:
retention-days: 1

run-maestro-tests:
name: Run Maestro Tests
name: Run Tests for API Level ${{ matrix.api-level }}
needs: build
runs-on: ubuntu-latest
strategy:
# we want that the matrix keeps running, default is to cancel them if it fails.
fail-fast: false
matrix:
include:
- api-level: 29 # Android 10
target: default
channel: stable
- api-level: 30 # Android 11
target: aosp_atd
channel: canary # Necessary for ATDs
- api-level: 31 # Android 12
target: google_apis
channel: stable
- api-level: 33 # Android 13
target: google_apis
channel: stable
- api-level: 34 # Android 14
target: google_apis
channel: stable
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -78,12 +98,12 @@ jobs:
- name: Run tests
uses: reactivecircus/android-emulator-runner@f0d1ed2dcad93c7479e8b2f2226c83af54494915 # pin@v2.32.0
with:
api-level: 30
api-level: ${{ matrix.api-level }}
force-avd-creation: false
disable-animations: true
disable-spellchecker: true
target: 'aosp_atd'
channel: canary # Necessary for ATDs
target: ${{ matrix.target }}
channel: ${{ matrix.channel }}
emulator-options: >
-no-window
-no-snapshot-save
Expand Down

0 comments on commit f93b11b

Please sign in to comment.