Fix ios archive #94
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: Android | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
e2e: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: gradle | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: android-actions/setup-android@v2 | |
- name: Android Deps | |
run: | | |
rm -rf ~/Library/Android/sdk/ndk || echo "skipped" | |
rm -rf ~/Library/Android/sdk/ndk-bundle || echo "skipped" | |
- uses: nttld/setup-ndk@v1 | |
id: setup-ndk | |
with: | |
ndk-version: r21d | |
- name: Set up Node | |
run: | | |
npm install -g detox-cli | |
npm install -g yarn | |
- run: yarn | |
- run: yarn example build:android | |
env: | |
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} | |
- run: yarn example start & | |
timeout-minutes: 10 | |
- uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 29 | |
avd-name: PhoneAPI30 | |
arch: x86_64 | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true | |
script: yarn example test:android |