chore: fix code using UP rule
#232
This file contains hidden or 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: AdbeUnitTests-Api16 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [master, main] | |
| paths: | |
| - "Makefile" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| - "adbe/*" | |
| - "tests/*" | |
| - ".github/workflows/adbe-unittests-api16.yml" | |
| pull_request: | |
| branches: [master, main] | |
| paths: | |
| - "Makefile" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| - "adbe/*" | |
| - "tests/*" | |
| - ".github/workflows/adbe-unittests-api16.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| testOnAndroidApi16: | |
| runs-on: ubuntu-latest | |
| # This test is slower compared to the other tests | |
| timeout-minutes: 20 | |
| strategy: | |
| matrix: | |
| # https://github.com/ashishb/adb-enhanced/pull/100/checks?check_run_id=492546108 | |
| api-level: [16] # 15 and 19 don't work | |
| target: [default] # Other option: google_apis | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| # Ref: https://github.com/ReactiveCircus/android-emulator-runner?tab=readme-ov-file#running-hardware-accelerated-emulators-on-linux-runners | |
| - 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 | |
| - name: Gradle cache | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: AVD cache | |
| uses: actions/cache@v4 | |
| id: avd-cache | |
| with: | |
| path: | | |
| ~/.android/avd/* | |
| ~/.android/adb* | |
| key: avd-${{ matrix.api-level }} | |
| - name: Create AVD and generate snapshot for caching | |
| if: steps.avd-cache.outputs.cache-hit != 'true' | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| api-level: ${{ matrix.api-level }} | |
| force-avd-creation: false | |
| emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -no-metrics -camera-back none | |
| disable-animations: false | |
| script: echo "Generated AVD snapshot for caching." | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Run tests | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| api-level: ${{ matrix.api-level }} | |
| force-avd-creation: false | |
| emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -no-metrics -camera-back none | |
| disable-animations: true | |
| target: ${{ matrix.target }} | |
| script: make test_python |