Skip to content

Commit

Permalink
Remove parallelization limiting for device tets on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvanyo committed Jan 18, 2025
1 parent dd451a5 commit ceb3342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ jobs:
- name: Run device checks
run: |
# run the tests, with one retry attempt
run_tests () { ./gradlew ${{ matrix.target }}${{ matrix.device }}api${{ matrix.api-level }}Check --no-parallel -Dorg.gradle.workers.max=1 --stacktrace; }
run_tests () { ./gradlew ${{ matrix.target }}${{ matrix.device }}api${{ matrix.api-level }}Check --stacktrace; }
(echo "==== Attempt 1 ====" && run_tests) || (echo "==== Attempt 2 ====" && run_tests) || (echo "==== Both attempts failed ====" && exit 1)
- name: Upload device test results
Expand Down

0 comments on commit ceb3342

Please sign in to comment.