From ceb33428eb09beaae63a81dd41ed3c1233c647e2 Mon Sep 17 00:00:00 2001 From: Alex Vanyo Date: Mon, 13 Jan 2025 10:35:23 -0800 Subject: [PATCH] Remove parallelization limiting for device tets on CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 313ff526f..a4e0ad027 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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