Upgrade from deprecated macos-13 to macos-15-intel in CI #657
Workflow file for this run
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: | |
| matrix: | |
| # macos-15-intel runs on Intel | |
| # All others run on Apple Silicon, | |
| runs_on: [macos-14, macos-latest, macos-26, macos-15-intel] | |
| steps: | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - uses: actions/checkout@v5 | |
| - 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: buildozer ios debug | |
| run: | | |
| touch main.py | |
| buildozer ios debug |