ci: gh workflows for native ci #13
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: Android Build and Test | |
on: | |
pull_request: | |
types: [opened, reopened ] | |
push: | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
android-build-unit-test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Setup node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: | | |
npm install | |
cd example | |
npm install | |
- uses: actions/cache@v2 | |
name: Cache node_modules | |
with: | |
path: example/node_modules | |
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }} | |
restore-keys: | | |
${{ runner.os }}-nodeModules- | |
- uses: actions/cache@v2 | |
name: Cache outter node_modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-outterNodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }} | |
restore-keys: | | |
${{ runner.os }}-outterNodeModules- | |
- uses: actions/cache@v2 | |
name: Cache Gradle dependencies | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }} | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: Run unit tests | |
run: | | |
cd example/android | |
./gradlew test --stacktrace | |
- name: Build APK | |
run: | | |
npm run prepack | |
cd example/android | |
./gradlew assembleRelease | |
mv app/build/outputs/apk/release/app-release.apk app-release-${{ github.sha }}.apk | |
ls | |
pwd | |
echo ${{ github.workspace }} | |
- name: Upload APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app-release-${{ github.sha }}.apk | |
path: example/android/app-release-${{ github.sha }}.apk | |
android-test: | |
runs-on: macos-latest | |
needs: android-build-unit-test | |
strategy: | |
matrix: | |
api-level: [24, 25, 29, 30, 31] | |
target: [default] | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Setup node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- uses: actions/cache@v3 | |
name: Cache node_modules | |
with: | |
path: example/node_modules | |
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }} | |
restore-keys: | | |
${{ runner.os }}-nodeModules- | |
- uses: actions/cache@v3 | |
name: Cache outter node_modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-outterNodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }} | |
restore-keys: | | |
${{ runner.os }}-outterNodeModules- | |
- uses: actions/cache@v3 | |
name: Cache Gradle dependencies | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }} | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: Instrumentation Tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: ${{ matrix.target }} | |
arch: x86_64 | |
profile: Nexus 6 | |
script: | | |
cd example/android | |
adb logcat -c # clear logs | |
touch app/emulator.log # create log file | |
chmod 777 app/emulator.log # allow writing to log file | |
adb logcat >> app/emulator.log & # pipe all logcat messages into log file as a background process | |
./gradlew connectedCheck --stacktrace # here run your tests | |
- name: Upload Reports | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Test-Reports | |
path: example/android/app/build/reports | |
if: always() |