Skip to content

Commit d83bb42

Browse files
committed
In GitHub Actions example, skip Android tests on macOS
1 parent 691556f commit d83bb42

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

examples/github-deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ jobs:
4747
steps:
4848
- uses: actions/checkout@v4
4949

50+
# GitHub Actions can't currently run the Android emulator on macOS.
51+
- name: Skip Android tests on macOS
52+
if: matrix.os == 'android-arm'
53+
run: echo "CIBW_TEST_COMMAND=" >> "$GITHUB_ENV"
54+
5055
# https://github.blog/changelog/2024-04-02-github-actions-hardware-accelerated-android-virtualization-now-available/
5156
- name: Enable KVM for Android emulator
5257
if: matrix.os == 'android-intel'

0 commit comments

Comments
 (0)