chore: Bump ini from 4.1.3 to 5.0.0 #256
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: Functional Tests | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- platformVersion: "12.0" | |
apiLevel: 32 | |
emuTag: google_apis | |
arch: x86_64 | |
- platformVersion: "11.0" | |
apiLevel: 30 | |
emuTag: google_apis | |
arch: x86 | |
- platformVersion: "9.0" | |
apiLevel: 28 | |
emuTag: default | |
arch: x86 | |
- platformVersion: "7.1" | |
apiLevel: 25 | |
emuTag: default | |
arch: x86 | |
- platformVersion: "5.1" | |
apiLevel: 22 | |
emuTag: default | |
arch: x86 | |
fail-fast: false | |
env: | |
CI: true | |
ANDROID_AVD: emulator | |
ANDROID_SDK_VERSION: "${{ matrix.apiLevel }}" | |
PLATFORM_VERSION: "${{ matrix.platformVersion }}" | |
EMU_TAG: "${{ matrix.emuTag }}" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Enable KVM group perms | |
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: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
check-latest: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- run: npm install --no-package-lock | |
name: Install dev dependencies | |
- name: AVD cache | |
uses: actions/cache@v3 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ matrix.apiLevel }} | |
# https://github.com/marketplace/actions/android-emulator-runner | |
- uses: reactivecircus/android-emulator-runner@v2 | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
name: Generate AVD snapshot for caching | |
with: | |
script: echo "Generated AVD snapshot for caching." | |
avd-name: $ANDROID_AVD | |
force-avd-creation: false | |
api-level: ${{ matrix.apiLevel }} | |
disable-spellchecker: true | |
target: ${{ matrix.emuTag }} | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim | |
arch: ${{ matrix.arch }} | |
disable-animations: true | |
- run: nohup adb logcat > logcat.log & | |
name: Capture Logcat | |
- uses: reactivecircus/android-emulator-runner@v2 | |
name: api${{ matrix.apiLevel }}_e2e | |
with: | |
script: npm run e2e-test | |
avd-name: $ANDROID_AVD | |
force-avd-creation: false | |
api-level: ${{ matrix.apiLevel }} | |
disable-spellchecker: true | |
target: ${{ matrix.emuTag }} | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim | |
arch: ${{ matrix.arch }} | |
disable-animations: true | |
- name: Save logcat output | |
if: ${{ always() }} | |
uses: actions/upload-artifact@master | |
with: | |
name: logcat-api${{ matrix.apiLevel }} | |
path: logcat.log |