We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 691556f commit d83bb42Copy full SHA for d83bb42
examples/github-deploy.yml
@@ -47,6 +47,11 @@ jobs:
47
steps:
48
- uses: actions/checkout@v4
49
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
+
55
# https://github.blog/changelog/2024-04-02-github-actions-hardware-accelerated-android-virtualization-now-available/
56
- name: Enable KVM for Android emulator
57
if: matrix.os == 'android-intel'
0 commit comments