Update dependency cython to v3 #753
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: [push, pull_request] | |
| name: iOS | |
| jobs: | |
| Integration: | |
| name: "Integration (${{ matrix.runs_on }}, ${{ matrix.python }})" | |
| runs-on: ${{ matrix.runs_on }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # macos-15-intel runs on Intel. | |
| # All others run on Apple Silicon (ARM) | |
| runs_on: [macos-14, macos-latest, macos-26, macos-15-intel] | |
| python: [3.x] | |
| steps: | |
| - name: "Setup Python ${{ matrix.python }} on ${{ matrix.runs_on }} (${{ runner.arch }})" | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - uses: actions/checkout@v6 | |
| - name: Setup environment | |
| run: | | |
| pip install .[ios] | |
| - name: Check buildozer installation | |
| run: | | |
| buildozer --help | |
| - name: Initialize buildozer in project folder | |
| run: | | |
| buildozer init | |
| - name: Install dependencies | |
| run: | | |
| brew install autoconf automake libtool pkg-config | |
| - name: Install Metal Toolchain on macOS 26 | |
| if: matrix.runs_on == 'macos-26' # actions/runner-images#13080 | |
| run: | | |
| sudo xcodebuild -downloadComponent MetalToolchain | |
| - name: buildozer ios debug | |
| run: | | |
| touch main.py | |
| buildozer ios debug |