diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ddde7a9e..4fc99df6a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: run: ./build.sh build - name: Run Android tests - run: ./build.sh android-tests-parallel 28 29 30 31 32 33 + run: ./build.sh android-tests-parallel 28 29 30 32 33 34 - name: Upload artifacts if: always() diff --git a/build.sh b/build.sh index ac81802e1..8943fd001 100755 --- a/build.sh +++ b/build.sh @@ -181,7 +181,7 @@ android_test() { OUT_INSTRUMENT=${ANDROID_OUTPUTS_DIR}/instrument-${API}.txt OUT_LOGCAT=${ANDROID_OUTPUTS_DIR}/logcat-${API}.txt FAILED_TESTS="" - for i in {1..5}; do + for i in {1..10}; do log_info "Running $size instrumented tests (attempt $i)..." $ADB shell am instrument \ -r -e coverage true -e size "$size" $FAILED_TESTS \