From 75cf1df79df809d3b35a5aff95235c9ef495f0dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20G=C3=B6ransson?= Date: Fri, 10 Jan 2025 13:45:09 +0100 Subject: [PATCH] Test --- .github/workflows/android-app.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index a035439ead3e..0c020c3fc04e 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -394,6 +394,34 @@ jobs: name: debug-keystore path: /root/.android + - name: Wait for other jobs (native, relay list) + uses: kachick/wait-other-jobs@v3.6.0 + with: + wait-seconds-before-first-polling: '0' + wait-list: | + [ + { + "workflowFile": "android-app.yml", + "jobMatchMode": "prefix", + "jobName": "Build native" + }, + { + "workflowFile": "android-app.yml", + "jobName": "Generate relay list" + } + ] + + - uses: actions/download-artifact@v4 + with: + pattern: native-libs-* + path: android/app/build/rustJniLibs/android + merge-multiple: true + + - uses: actions/download-artifact@v4 + with: + name: relay-list + path: android/app/build/extraAssets + - name: Assemble instrumented test apk uses: burrunan/gradle-cache-action@v1 with: