Skip to content

wheel skip

wheel skip #652

Workflow file for this run

name: PyPi wheels
on: [push, pull_request]
jobs:
buildLinxaarch:
if: startsWith(github.ref, 'refs/tags/20')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
architecture: ['x64']
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: ubuntu-22.04
linux_archs: "aarch64"
name: ${{ matrix.os }} ${{ matrix.architecture }} ${{ matrix.linux_archs }}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy cython"
CIBW_SKIP: "pp* *37* *38* *-musllinux_aarch64"
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
- name: delvewheel install
if: runner.os == 'Windows'
run: |
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.18.1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels
buildLinx686:
if: startsWith(github.ref, 'refs/tags/20')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
architecture: ['x64']
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: ubuntu-22.04
linux_archs: "i686"
skip: "pp* *37* *38*"
name: ${{ matrix.os }} ${{ matrix.architecture }} ${{ matrix.linux_archs }}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
- name: delvewheel install
if: runner.os == 'Windows'
run: |
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.18.1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels
buildLinx86x64:
if: startsWith(github.ref, 'refs/tags/20')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
architecture: ['x64']
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: ubuntu-22.04
linux_archs: "x86_64"
skip: "pp* *37* *38*"
name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
- name: delvewheel install
if: runner.os == 'Windows'
run: |
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.18.1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels
buildWin:
if: startsWith(github.ref, 'refs/tags/20')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
architecture: ['x64']
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip

Check failure on line 179 in .github/workflows/wheel.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/wheel.yml

Invalid workflow file

You have an error in your yaml syntax on line 179
- os: windows-latest
skip: "*2*win* *win32 pp* *37* *38*""
name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
CIBW_BEFORE_TEST: "git status"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
- name: delvewheel install
if: runner.os == 'Windows'
run: |
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.18.1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels
buildMAC:
if: startsWith(github.ref, 'refs/tags/20')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest]
architecture: ["universal2", "arm64"]
name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: "pp* *37* *38*"
CIBW_ARCHS_MACOS: ${{ matrix.architecture }}
CIBW_TEST_SKIP: "*"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build wheels
uses: joerick/cibuildwheel@v2.18.1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels