Skip to content

Commit efa3403

Browse files
committed
try make and cargo
1 parent d8045c7 commit efa3403

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/workflows/CI.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
args: --release --out dist --find-interpreter
4848
sccache: 'true'
4949
manylinux: auto
50-
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)
50+
before-script-linux: (apt-get update && apt-get install -y pkg-config make) || (yum install make -y)
5151
- name: Upload wheels
5252
uses: actions/upload-artifact@v4
5353
with:
@@ -79,7 +79,7 @@ jobs:
7979
args: --release --out dist --find-interpreter
8080
sccache: 'true'
8181
manylinux: musllinux_1_2
82-
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)
82+
before-script-linux: (apt-get update && apt-get install -y pkg-config make) || (yum install make -y)
8383
- name: Upload wheels
8484
uses: actions/upload-artifact@v4
8585
with:

Cargo.lock

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ base64 = "0.22.1"
2727
scrypt = "0.11.0"
2828
pkcs8 = "0.10.2"
2929
schnorrkel = "0.11.4"
30+
openssl = { version = "0.10.64", features = ["vendored"] }
3031

3132
[features]
3233
extension-module = ["pyo3/extension-module"]

0 commit comments

Comments
 (0)