We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a60b394 commit 8158629Copy full SHA for 8158629
1 file changed
.github/workflows/tests-cibw.yml
@@ -70,6 +70,14 @@ jobs:
70
if: contains(matrix.runs-on, 'macos')
71
run: echo "CIBW_TEST_COMMAND=" >> "$GITHUB_ENV"
72
73
+ # Temporarily disable Android tests on ubuntu-latest due to emulator issues.
74
+ # See https://github.com/pybind/pybind11/issues/5913.
75
+ - name: "NOTE: Android tests are disabled on ubuntu-latest"
76
+ if: contains(matrix.runs-on, 'ubuntu')
77
+ run: |
78
+ echo "CIBW_TEST_COMMAND=" >> "$GITHUB_ENV"
79
+ echo '::warning::Android cibuildwheel tests are disabled on ubuntu-latest (CIBW_TEST_COMMAND is empty). See issue 5913.'
80
+
81
# https://github.blog/changelog/2024-04-02-github-actions-hardware-accelerated-android-virtualization-now-available/
82
- name: Enable KVM for Android emulator
83
if: contains(matrix.runs-on, 'ubuntu')
0 commit comments