Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 4 additions & 52 deletions .github/workflows/python/build/linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,61 +31,13 @@ runs:
working-directory: "./python"
shell: bash

- name: Building 3.14 wheel
- name: Building wheels
working-directory: ./python
shell: bash
run: |
maturin build -i 3.14 --release --target=x86_64-unknown-linux-gnu
maturin build -i 3.14 --release --target=i686-unknown-linux-gnu
maturin build -i 3.14 --release --target=aarch64-unknown-linux-gnu

- uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Building 3.13 wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.13 --release --target=x86_64-unknown-linux-gnu
maturin build -i 3.13 --release --target=i686-unknown-linux-gnu
maturin build -i 3.13 --release --target=aarch64-unknown-linux-gnu

- uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Building 3.12 wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.12 --release --target=x86_64-unknown-linux-gnu
maturin build -i 3.12 --release --target=i686-unknown-linux-gnu
maturin build -i 3.12 --release --target=aarch64-unknown-linux-gnu

- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Building 3.11 Wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.11 --release --target=x86_64-unknown-linux-gnu
maturin build -i 3.11 --release --target=i686-unknown-linux-gnu
maturin build -i 3.11 --release --target=aarch64-unknown-linux-gnu

- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Building 3.10 Wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.10 --release --target=x86_64-unknown-linux-gnu
maturin build -i 3.10 --release --target=i686-unknown-linux-gnu
maturin build -i 3.10 --release --target=aarch64-unknown-linux-gnu
maturin build --release --target=x86_64-unknown-linux-gnu
maturin build --release --target=i686-unknown-linux-gnu
maturin build --release --target=aarch64-unknown-linux-gnu

- name: Place Artifacts
shell: bash
Expand Down
58 changes: 3 additions & 55 deletions .github/workflows/python/build/macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,66 +22,14 @@ runs:
shell: bash
run: pip install maturin --disable-pip-version-check

- name: Building 3.14 Wheel
- name: Building wheels
working-directory: ./python
shell: bash
run: |
source $HOME/.cargo/env

maturin build --release -i 3.14 --target=x86_64-apple-darwin
maturin build --release -i 3.14 --target=aarch64-apple-darwin

- uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Building 3.13 Wheel
working-directory: ./python
shell: bash
run: |
source $HOME/.cargo/env

maturin build --release -i 3.13 --target=x86_64-apple-darwin
maturin build --release -i 3.13 --target=aarch64-apple-darwin

- uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Building 3.12 Wheel
working-directory: ./python
shell: bash
run: |
source $HOME/.cargo/env

maturin build --release -i 3.12 --target=x86_64-apple-darwin
maturin build --release -i 3.12 --target=aarch64-apple-darwin

- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Building 3.11 Wheel
working-directory: ./python
shell: bash
run: |
source $HOME/.cargo/env

maturin build --release -i 3.11 --target=x86_64-apple-darwin
maturin build --release -i 3.11 --target=aarch64-apple-darwin

- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Building 3.10 Wheel
working-directory: ./python
shell: bash
run: |
source $HOME/.cargo/env

maturin build --release -i 3.10 --target=x86_64-apple-darwin
maturin build --release -i 3.10 --target=aarch64-apple-darwin
maturin build --release --target=x86_64-apple-darwin
maturin build --release --target=aarch64-apple-darwin

- name: Place Artifacts
shell: bash
Expand Down
111 changes: 5 additions & 106 deletions .github/workflows/python/build/windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ runs:
- uses: actions/setup-python@v5
with:
python-version: "3.14"
architecture: "x64"

- name: Setting up PATH environment variable
shell: bash
Expand All @@ -22,115 +23,13 @@ runs:
shell: bash
run: pip install maturin

- uses: actions/setup-python@v5
with:
python-version: "3.14"
architecture: "x86"

- name: Building i686 3.14 wheel
working-directory: ./python
shell: bash
run: maturin build -i 3.14 --release --target=i686-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.14"
architecture: "x64"

- name: Building x86_64, aarch64 3.14 wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.14 --release --target=x86_64-pc-windows-msvc
maturin build -i 3.14 --release --target=aarch64-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.13"
architecture: "x86"

- name: Building i686 3.13 wheel
working-directory: ./python
shell: bash
run: maturin build -i 3.13 --release --target=i686-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.13"
architecture: "x64"

- name: Building x86_64, aarch64 3.13 wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.13 --release --target=x86_64-pc-windows-msvc
maturin build -i 3.13 --release --target=aarch64-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.12"
architecture: "x86"

- name: Building i686 3.12 wheel
working-directory: ./python
shell: bash
run: maturin build -i 3.12 --release --target=i686-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.12"
architecture: "x64"

- name: Building x86_64, aarch64 3.12 wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.12 --release --target=x86_64-pc-windows-msvc
maturin build -i 3.12 --release --target=aarch64-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.11"
architecture: "x86"

- name: Building i686 3.11 wheel
working-directory: ./python
shell: bash
run: maturin build -i 3.11 --release --target=i686-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.11"
architecture: "x64"

- name: Building x86_64, aarch64 3.11 wheel
working-directory: ./python
shell: bash
run: |
maturin build -i 3.11 --release --target=x86_64-pc-windows-msvc
maturin build -i 3.11 --release --target=aarch64-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: "x86"

- name: Building i686 3.10 wheel
working-directory: ./python
shell: bash
run: maturin build -i 3.10 --release --target=i686-pc-windows-msvc

- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: "x64"

- name: Building x86_64, aarch64 3.10 wheel
- name: Building wheels
working-directory: ./python
shell: bash
run: |
maturin build -i 3.10 --release --target=x86_64-pc-windows-msvc
maturin build -i 3.10 --release --target=aarch64-pc-windows-msvc
maturin build --release --target=x86_64-pc-windows-msvc
maturin build --release --target=i686-pc-windows-msvc
maturin build --release --target=aarch64-pc-windows-msvc

- name: Place Artifacts
shell: bash
Expand Down
Loading
Loading