Skip to content

Commit

Permalink
ci: linux build (#15)
Browse files Browse the repository at this point in the history
* ci: restore linux artifact upload

* chore: bump version
  • Loading branch information
cmdoret authored Sep 20, 2024
1 parent 16bf31e commit a8f9758
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maturin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: 3.x
- name: Fix openssl regression
run: cargo update openssl-src --precise 300.3.1+3.3.1
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
manylinux: auto
#sccache: 'true'
sccache: 'true'
args: --release --out dist --manifest-path pyfuzon/Cargo.toml
before-script-linux: |
# Source: https://github.com/sfackler/rust-openssl/issues/2036#issuecomment-1724324145
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [musllinux, macos, sdist]
needs: [linux, musllinux, macos, sdist]
steps:
- uses: actions/download-artifact@v4
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion fuzon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuzon"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion pyfuzon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyfuzon"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

[lib]
Expand Down

0 comments on commit a8f9758

Please sign in to comment.