Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use single quotes
  • Loading branch information
mhsmith committed Jul 28, 2025
commit 1d8dc2f14dc4635dfc1b672f3cc44fa164da9b39
6 changes: 3 additions & 3 deletions .github/actions/build-android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:

# (https://github.blog/changelog/2024-04-02-github-actions-hardware-accelerated-android-virtualization-now-available/).
- name: Enable KVM for Android emulator
if: runner.os == "Linux"
if: runner.os == 'Linux'
shell: bash
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' \
Expand All @@ -40,14 +40,14 @@ runs:
sudo udevadm trigger --name-match=kvm

- name: Unpack release artifact
if: runner.os == "Linux"
if: runner.os == 'Linux'
shell: bash
run: |
mkdir $RUNNER_TEMP/android
tar -C $RUNNER_TEMP/android -xf cross-build/${{ inputs.triplet }}/dist/*

- name: Tests
if: runner.os == "Linux"
if: runner.os == 'Linux'
shell: bash
run: |
$RUNNER_TEMP/android/android.py test --managed maxVersion -v -- \
Expand Down
Loading