We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e92ee2 commit b495ae0Copy full SHA for b495ae0
1 file changed
.github/workflows/publish.yml
@@ -40,10 +40,15 @@ jobs:
40
python -m pip install --upgrade pip
41
pip install build maturin
42
43
- - name: Build wheels on Linux (manylinux2014)
+ - name: Build wheels on Linux (manylinux2014 + zig)
44
if: matrix.os == 'ubuntu-latest'
45
run: |
46
- maturin build --release --compatibility manylinux2014 -m crates/codex_native/Cargo.toml -i python -o dist
+ maturin build --release \
47
+ --zig \
48
+ --compatibility manylinux2014 \
49
+ -m crates/codex_native/Cargo.toml \
50
+ -i python \
51
+ -o dist
52
53
- name: Build wheels on macOS/Windows
54
if: matrix.os != 'ubuntu-latest'
0 commit comments