-
-
Notifications
You must be signed in to change notification settings - Fork 24
28 lines (28 loc) · 890 Bytes
/
test-macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "Test macOS"
on: [push, pull_request]
jobs:
test:
runs-on: macOS-10.15
steps:
- uses: actions/checkout@v1
- name: test install-sdk
run: npm config delete prefix && source ~/.nvm/nvm.sh && nvm install v16.15.0 && npm install && npm ci && npm run build
working-directory: install-sdk
- name: test emulator-run-cmd
run: npm config delete prefix && source ~/.nvm/nvm.sh && nvm install v16.15.0 && npm install && npm ci && npm run build
working-directory: emulator-run-cmd
- uses: ./install-sdk
name: install sdk
- run: sdkmanager platform-tools
- run: adb devices
- uses: ./emulator-run-cmd
with:
api: 25
tag: default
abi: x86
cmd: adb shell getprop
bootTimeout: 500
- uses: actions/upload-artifact@v1
with:
name: logcat
path: artifacts/logcat.log