fix: Revert the clearCache change for API 33+ #168
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: | |
fail-fast: false | |
matrix: | |
include: | |
- platformVersion: "11.0" | |
apiLevel: 30 | |
emuTag: google_apis | |
- platformVersion: "9.0" | |
apiLevel: 28 | |
emuTag: default | |
- platformVersion: "7.1" | |
apiLevel: 25 | |
emuTag: default | |
- platformVersion: "5.1" | |
apiLevel: 22 | |
emuTag: default | |
env: | |
CI: true | |
ANDROID_AVD: emulator | |
ANDROID_SDK_VERSION: ${{ matrix.apiLevel }} | |
PLATFORM_VERSION: ${{ matrix.platformVersion }} | |
EMU_TAG: ${{ matrix.emuTag }} | |
_FORCE_LOGS: 1 | |
# No hardware acceleration is available for emulators on Ubuntu: | |
# https://github.com/marketplace/actions/android-emulator-runner#can-i-use-this-action-on-linux-vms | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
check-latest: true | |
- run: npm install --no-package-lock | |
name: Install dev dependencies | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- run: nohup adb logcat > logcat.log & | |
name: Capture Logcat | |
- uses: reactivecircus/android-emulator-runner@v2 | |
name: e2e_api${{ matrix.apiLevel }} | |
with: | |
script: scripts/e2e.sh | |
avd-name: ${{ env.ANDROID_AVD }} | |
sdcard-path-or-size: 1500M | |
api-level: ${{ matrix.apiLevel }} | |
disable-spellchecker: true | |
target: ${{ matrix.emuTag }} | |
- name: Save logcat output | |
if: ${{ always() }} | |
uses: actions/upload-artifact@master | |
with: | |
name: logcat-api${{ matrix.apiLevel }} | |
path: logcat.log |