Skip to content

Commit

Permalink
Try to build more kinds of wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
diceroll123 committed Sep 30, 2023
1 parent b70c1a8 commit a28f967
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 28 deletions.
105 changes: 78 additions & 27 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,42 +4,93 @@ on:
push:
tags: [ 'v*' ]

env:
PYTHON_VERSION: "3.11"
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
CARGO_TERM_COLOR: always
RUSTUP_MAX_RETRIES: 10

jobs:

sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Build sdist"
uses: PyO3/maturin-action@v1.40.2
with:
command: build
args: --out dist
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

macos-x86_64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: "Build wheels - x86_64"
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release --out dist
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

macos-universal:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: "Build wheels - universal"
uses: PyO3/maturin-action@v1
with:
args: --release --target universal2-apple-darwin --out dist
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.8
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.9
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.10
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.11
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [ linux ]
needs: [ linux, macos-x86_64, macos-universal, sdist ]
steps:
- uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neofoodclub"
version = "0.0.3"
version = "0.0.4"
edition = "2021"

[lib]
Expand Down

0 comments on commit a28f967

Please sign in to comment.