Skip to content

Experiment with macOS wheel building #25350

Experiment with macOS wheel building

Experiment with macOS wheel building #25350

Workflow file for this run

# GENERATED, DO NOT EDIT!
# To change, edit `src/python/pants_release/generate_github_workflows.py` and run:
# ./pants run src/python/pants_release/generate_github_workflows.py
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
env:
PANTS_CONFIG_FILES: +['pants.ci.toml']
RUST_BACKTRACE: all
jobs:
macos13_x86_64:
name: MacOS13
strategy:
matrix:
os: [macos-13, macos-14]
runs-on:
- ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 10
- name: Set up Python 3.7, 3.8, 3.9, 3.10, 3.12, 3.13, 3.11
uses: actions/setup-python@v5
with:
python-version: '3.9
3.10
3.12
3.13
3.11'
- run: |
python -VV
file $(which python)
- run: |
python -c 'import sysconfig; print(sysconfig.get_platform())'
name: Pull Request CI
'on':
pull_request: {}