We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d74caaf commit a93288eCopy full SHA for a93288e
.github/workflows/CI.yml
@@ -8,10 +8,6 @@ name: CI
8
on:
9
pull_request:
10
branches: [main]
11
- paths:
12
- - src/**
13
- - python/**
14
- - "*.toml"
15
push:
16
17
paths:
@@ -42,4 +38,6 @@ jobs:
42
38
target: ${{ matrix.platform.target }}
43
39
args: --release --out dist --find-interpreter
44
40
sccache: 'true'
45
- manylinux: auto
41
+ manylinux: auto
+ before-script-linux: |
+ sudo apt-get install pkg-config libssl-dev
.github/workflows/release.yml
@@ -48,6 +48,9 @@ jobs:
48
- uses: actions/setup-python@v5
49
with:
50
python-version: 3.x
51
+ - name: install packages
52
+ if: ${{ matrix.platform.os == 'linux' }}
53
+ run: sudo apt-get install pkg-config libssl-dev
54
- name: Build wheels
55
uses: PyO3/maturin-action@v1
56
0 commit comments