Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin maturin version in CI for now #2219

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
- name: "Build sdist"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
command: sdist
args: --out dist
- name: "Test sdist"
Expand Down Expand Up @@ -73,6 +74,7 @@ jobs:
- name: "Build wheels - x86_64"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: x86_64
args: --release --locked --out dist
- name: "Upload wheels"
Expand Down Expand Up @@ -112,6 +114,7 @@ jobs:
- name: "Build wheels - universal2"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
args: --release --locked --target universal2-apple-darwin --out dist
- name: "Test wheel - universal2"
run: |
Expand Down Expand Up @@ -162,6 +165,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.platform.target }}
args: --release --locked --out dist
- name: "Test wheel"
Expand Down Expand Up @@ -209,6 +213,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.target }}
manylinux: auto
args: --release --locked --out dist
Expand Down Expand Up @@ -283,6 +288,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.platform.target }}
manylinux: 2_28
docker-options: ${{ matrix.platform.maturin_docker_options }}
Expand Down Expand Up @@ -348,6 +354,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.platform.target }}
manylinux: auto
docker-options: ${{ matrix.platform.maturin_docker_options }}
Expand Down Expand Up @@ -415,6 +422,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.platform.target }}
manylinux: auto
docker-options: ${{ matrix.platform.maturin_docker_options }}
Expand Down Expand Up @@ -485,6 +493,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.target }}
manylinux: musllinux_1_2
args: --release --locked --out dist
Expand Down Expand Up @@ -547,6 +556,7 @@ jobs:
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.4.0
target: ${{ matrix.platform.target }}
manylinux: musllinux_1_2
args: --release --locked --out dist
Expand Down