forked from pypa/cibuildwheel
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 1.54 KB
/
cache.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test cache
on:
push:
jobs:
test:
name: Test on ${{ matrix.os }} (${{ matrix.python_version }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, macos-14, macos-15]
python_version: ['3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python ${{ matrix.python_version }}
id: python
with:
python-version: ${{ matrix.python_version }}
allow-prereleases: true
- run: pip install .
- name: run cpython setup
shell: bash
run: |
"${{ steps.python.outputs.python-path }}" -u << "EOF"
from pathlib import Path
from cibuildwheel.macos import install_cpython
tmp = Path("/tmp/cibw-tmp")
install_cpython(tmp, "3.8", "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg", False)
install_cpython(tmp, "3.9", "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg", False)
install_cpython(tmp, "3.10", "https://www.python.org/ftp/python/3.10.11/python-3.10.11-macos11.pkg", False)
install_cpython(tmp, "3.11", "https://www.python.org/ftp/python/3.11.9/python-3.11.9-macos11.pkg", False)
install_cpython(tmp, "3.12", "https://www.python.org/ftp/python/3.12.8/python-3.12.8-macos11.pkg", False)
install_cpython(tmp, "3.13", "https://www.python.org/ftp/python/3.13.1/python-3.13.1-macos11.pkg", False)
install_cpython(tmp, "3.13", "https://www.python.org/ftp/python/3.13.1/python-3.13.1-macos11.pkg", True)
EOF