chore(release): 0.1.7 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test" | |
on: [push, pull_request] | |
jobs: | |
test-ubuntu-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: test install-sdk | |
run: npm config delete prefix && source ~/.nvm/nvm.sh && nvm install v20.14.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 v20.14.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 | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- uses: ./emulator-run-cmd | |
with: | |
api: 25 | |
tag: default | |
abi: x86 | |
cmd: adb shell getprop | |
cmdOptions: -noaudio -no-boot-anim -no-window | |
bootTimeout: 500 | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: logcat | |
path: artifacts/logcat.log | |
test-macos-12: | |
runs-on: macOS-12 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: test install-sdk | |
run: npm config delete prefix && source ~/.nvm/nvm.sh && nvm install v20.14.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 v20.14.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 |