mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
Some checks failed
CI / Rust unit tests (push) Has been cancelled
CI / build (push) Has been cancelled
pypi_upload / build (push) Has been cancelled
GitHub Actions Security Analysis with zizmor 🌈 / zizmor latest via PyPI (push) Has been cancelled
CI / test (macos-latest, 3.10) (push) Has been cancelled
CI / test (macos-latest, 3.11) (push) Has been cancelled
CI / test (macos-latest, 3.12) (push) Has been cancelled
CI / test (macos-latest, 3.13) (push) Has been cancelled
CI / test (macos-latest, 3.13t) (push) Has been cancelled
CI / test (macos-latest, 3.14) (push) Has been cancelled
CI / test (macos-latest, 3.14t) (push) Has been cancelled
CI / test (macos-latest, 3.9) (push) Has been cancelled
CI / test (ubuntu-latest, 3.10) (push) Has been cancelled
CI / test (ubuntu-latest, 3.11) (push) Has been cancelled
CI / test (ubuntu-latest, 3.12) (push) Has been cancelled
CI / test (ubuntu-latest, 3.9) (push) Has been cancelled
CI / test (windows-latest, 3.10) (push) Has been cancelled
CI / test (windows-latest, 3.11) (push) Has been cancelled
CI / test (windows-latest, 3.12) (push) Has been cancelled
CI / test (windows-latest, 3.13) (push) Has been cancelled
CI / test (windows-latest, 3.13t) (push) Has been cancelled
CI / test (windows-latest, 3.14) (push) Has been cancelled
CI / test (windows-latest, 3.14t) (push) Has been cancelled
CI / test (windows-latest, 3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / Rustfmt (push) Has been cancelled
CI / test (ubuntu-latest, 3.13) (push) Has been cancelled
CI / test (ubuntu-latest, 3.13t) (push) Has been cancelled
CI / test (ubuntu-latest, 3.14) (push) Has been cancelled
CI / test (ubuntu-latest, 3.14t) (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / docs (push) Has been cancelled
pypi_upload / Upload wheels to pypi (push) Has been cancelled
remove macos-13 from ci
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: build
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
# Build python wheels
|
|
build:
|
|
name: Build wheels on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
[
|
|
macos-latest,
|
|
ubuntu-latest,
|
|
ubuntu-24.04-arm,
|
|
windows-latest,
|
|
windows-11-arm,
|
|
]
|
|
env:
|
|
SCCACHE_VERSION: 0.2.13
|
|
GITHUB_WORKSPACE: "${{github.workspace}}"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.12"
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- name: Disable scmtools local scheme
|
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
|
|
run: >-
|
|
echo LIBCST_NO_LOCAL_SCHEME=1 >> $GITHUB_ENV
|
|
- name: Enable building wheels for pre-release CPython versions
|
|
if: github.event_name != 'release'
|
|
run: echo CIBW_ENABLE=cpython-prerelease >> $GITHUB_ENV
|
|
- name: Build wheels
|
|
uses: pypa/cibuildwheel@v3.2.1
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
path: wheelhouse/*.whl
|
|
name: wheels-${{matrix.os}}
|