From 247a39d2e244833a3cb6e380deea16ebb82e16c1 Mon Sep 17 00:00:00 2001 From: blue928sky Date: Sun, 2 Feb 2025 15:31:43 +0900 Subject: [PATCH] Fix an hang on problem. https: //github.com/ReactiveCircus/android-emulator-runner/issues/385#issuecomment-2492035091 Change-Id: Iefbc9464a682bcd3baaf1d598fe97ae3a044ab2e --- .github/workflows/Build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index f7a1032494..3944aae17b 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -199,7 +199,10 @@ jobs: disable-animations: true disk-size: 6000M heap-size: 600M - script: ./gradlew connectedDemoDebugAndroidTest --daemon + # && killall -INT crashpad_handler || true + # came from https://github.com/ReactiveCircus/android-emulator-runner/issues/385#issuecomment-2492035091 + script: | + ./gradlew connectedDemoDebugAndroidTest --daemon && killall -INT crashpad_handler || true - name: Run local tests (including Roborazzi) for the combined coverage report (only API 34) if: matrix.api-level == 34