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 841d0e9 commit 9586546Copy full SHA for 9586546
.github/workflows/ci.yml
@@ -40,6 +40,9 @@ jobs:
40
with:
41
repository: amrsa1/Android-Emulator-image
42
path: Android-Emulator-image
43
+ - name: Install Docker
44
+ if: ${{ startsWith(matrix.os, 'macos-') }}
45
+ run: brew install docker
46
- name: "Launch emulator (Docker)"
47
timeout-minutes: 20
48
working-directory: Android-Emulator-image
@@ -52,7 +55,7 @@ jobs:
52
55
--build-arg EMULATOR_DEVICE="Nexus 6" \
53
56
--build-arg EMULATOR_NAME=nexus \
54
57
-t my-android-image .
- docker exec --privileged -it -e EMULATOR_TIMEOUT=300 androidContainer bash -c "./start_emu_headless.sh"
58
+ docker exec --privileged -it -e EMULATOR_TIMEOUT=300 my-android-image bash -c "./start_emu_headless.sh"
59
adb shell 'echo Hello World'
60
61
#- name: "Launch emulator"
0 commit comments