Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: set 20 min timeout for ui-test/bench jobs #147

Merged
merged 2 commits into from
Mar 5, 2024
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
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
test-ui:
name: 'Test UI'
runs-on: macos-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
Expand All @@ -103,7 +104,7 @@ jobs:
key: avd-api-${{ matrix.api-level }}-target-${{ matrix.target }}
- name: 'Create AVD'
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
uses: reactivecircus/android-emulator-runner@v2.29.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
Expand All @@ -114,7 +115,7 @@ jobs:
profile: Nexus 6
script: echo "Generated AVD snapshot for caching."
- name: 'Tests'
uses: reactivecircus/android-emulator-runner@v2
uses: reactivecircus/android-emulator-runner@v2.29.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
Expand All @@ -137,6 +138,7 @@ jobs:
test-minified:
name: 'Test UI Minified'
runs-on: macos-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
Expand All @@ -161,7 +163,7 @@ jobs:
key: avd-api-${{ matrix.api-level }}-target-${{ matrix.target }}
- name: 'Create AVD'
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
uses: reactivecircus/android-emulator-runner@v2.29.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
Expand All @@ -172,7 +174,7 @@ jobs:
profile: Nexus 6
script: echo "Generated AVD snapshot for caching."
- name: 'Tests'
uses: reactivecircus/android-emulator-runner@v2
uses: reactivecircus/android-emulator-runner@v2.29.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
Expand All @@ -195,6 +197,7 @@ jobs:
test-benchmark:
name: 'Test Benchmark'
runs-on: macos-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
Expand All @@ -219,7 +222,7 @@ jobs:
key: avd-api-${{ matrix.api-level }}-target-${{ matrix.target }}
- name: 'Create AVD'
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
uses: reactivecircus/android-emulator-runner@v2.29.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
Expand All @@ -229,7 +232,7 @@ jobs:
arch: x86_64
profile: Nexus 6
script: echo "Generated AVD snapshot for caching."
- uses: reactivecircus/android-emulator-runner@v2
- uses: reactivecircus/android-emulator-runner@v2.29.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
Expand Down
Loading