Skip to content

Commit

Permalink
try make and cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
camfairchild committed Oct 3, 2024
1 parent d8045c7 commit efa3403
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
before-script-linux: (apt-get update && apt-get install apt-utils && apt-get install -y pkg-config libssl-dev) || (yum install openssl openssl-devel -y)
before-script-linux: (apt-get update && apt-get install -y pkg-config make) || (yum install make -y)
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: musllinux_1_2
before-script-linux: (apt-get update && apt-get install apt-utils && apt-get install -y pkg-config libssl-dev) || (yum install openssl openssl-devel -y)
before-script-linux: (apt-get update && apt-get install -y pkg-config make) || (yum install make -y)
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ base64 = "0.22.1"
scrypt = "0.11.0"
pkcs8 = "0.10.2"
schnorrkel = "0.11.4"
openssl = { version = "0.10.64", features = ["vendored"] }

[features]
extension-module = ["pyo3/extension-module"]
Expand Down

0 comments on commit efa3403

Please sign in to comment.