Skip to content

Commit b495ae0

Browse files
committed
ci: enforce manylinux2014 with maturin --zig on Linux
1 parent 1e92ee2 commit b495ae0

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,15 @@ jobs:
4040
python -m pip install --upgrade pip
4141
pip install build maturin
4242
43-
- name: Build wheels on Linux (manylinux2014)
43+
- name: Build wheels on Linux (manylinux2014 + zig)
4444
if: matrix.os == 'ubuntu-latest'
4545
run: |
46-
maturin build --release --compatibility manylinux2014 -m crates/codex_native/Cargo.toml -i python -o dist
46+
maturin build --release \
47+
--zig \
48+
--compatibility manylinux2014 \
49+
-m crates/codex_native/Cargo.toml \
50+
-i python \
51+
-o dist
4752
4853
- name: Build wheels on macOS/Windows
4954
if: matrix.os != 'ubuntu-latest'

0 commit comments

Comments
 (0)