mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-14 20:27:47 +00:00
ci: add android test (#5714)
* ci: add android test Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Fix Android tests (#23) * Android tests working * Clarifications * ci: only use fork on Android Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: add wheel (missing) Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: no patchelf? Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: forgot pyproject android mention Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Fix GHA configuration * Update to cibuildwheel 3.1 * Restore installation of "wheel" * Revert iOS to cibuildwheel 3.0 * Actually revert iOS back to cibuildwheel 3.0 * Restore iOS to cibuildwheel 3.1, and skip Python 3.14 instead * Update .github/workflows/tests-cibw.yml --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Malcolm Smith <smith@chaquo.com>
This commit is contained in:
47
.github/workflows/tests-cibw.yml
vendored
47
.github/workflows/tests-cibw.yml
vendored
@@ -22,7 +22,7 @@ jobs:
|
||||
submodules: true
|
||||
fetch-depth: 0
|
||||
|
||||
- uses: pypa/cibuildwheel@v3.0
|
||||
- uses: pypa/cibuildwheel@v3.1
|
||||
env:
|
||||
PYODIDE_BUILD_EXPORTS: whole_archive
|
||||
with:
|
||||
@@ -30,8 +30,12 @@ jobs:
|
||||
only: cp312-pyodide_wasm32
|
||||
|
||||
build-ios:
|
||||
name: iOS wheel
|
||||
runs-on: macos-latest
|
||||
name: iOS wheel ${{ matrix.runs-on }}
|
||||
runs-on: ${{ matrix.runs-on }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
runs-on: [macos-latest, macos-13]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
@@ -40,8 +44,43 @@ jobs:
|
||||
|
||||
- run: brew upgrade cmake
|
||||
|
||||
- uses: pypa/cibuildwheel@v3.0
|
||||
- uses: pypa/cibuildwheel@v3.1
|
||||
env:
|
||||
CIBW_PLATFORM: ios
|
||||
CIBW_SKIP: cp314-* # https://github.com/pypa/cibuildwheel/issues/2494
|
||||
with:
|
||||
package-dir: tests
|
||||
|
||||
build-android:
|
||||
name: Android wheel ${{ matrix.runs-on }}
|
||||
runs-on: ${{ matrix.runs-on }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
runs-on: [macos-latest, macos-13, ubuntu-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
fetch-depth: 0
|
||||
|
||||
# GitHub Actions can't currently run the Android emulator on macOS.
|
||||
- name: Skip Android tests on macOS
|
||||
if: contains(matrix.runs-on, 'macos')
|
||||
run: echo "CIBW_TEST_COMMAND=" >> "$GITHUB_ENV"
|
||||
|
||||
# https://github.blog/changelog/2024-04-02-github-actions-hardware-accelerated-android-virtualization-now-available/
|
||||
- name: Enable KVM for Android emulator
|
||||
if: contains(matrix.runs-on, 'ubuntu')
|
||||
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
|
||||
|
||||
- run: pipx install patchelf
|
||||
|
||||
- uses: pypa/cibuildwheel@v3.1
|
||||
env:
|
||||
CIBW_PLATFORM: android
|
||||
with:
|
||||
package-dir: tests
|
||||
|
||||
Reference in New Issue
Block a user