We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2727e6e commit 2ad3180Copy full SHA for 2ad3180
1 file changed
.github/workflows/android.yml
@@ -63,6 +63,8 @@ jobs:
63
64
- name: Start emulator
65
run: |
66
+ export PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native
67
+
68
emulator -avd test_avd \
69
-no-snapshot-save \
70
-no-window \
@@ -83,7 +85,7 @@ jobs:
83
85
ctest --show-only=json-v1 > tests.json
84
86
87
# Push all test executables
- jq -r '.tests[].command[0]' tests.json | sort -u | while read exe; do
88
+ for exe in $(jq -r '.tests[].command[0]' tests.json | sort -u); do
89
adb push "$exe" /data/local/tmp/
90
adb shell chmod +x "/data/local/tmp/$(basename "$exe")"
91
done
0 commit comments