Skip to content

Commit 31ecb52

Browse files
committedJun 10, 2024
Create linux x86 wheel on master CI
1 parent a4bb742 commit 31ecb52

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎.github/workflows/python-test.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,15 @@ jobs:
7474
- name: Build wheel
7575
uses: PyO3/maturin-action@v1
7676
with:
77-
args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml
77+
args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml --features kerberos
7878
sccache: 'true'
7979
manylinux: '2014'
8080
docker-options: -e LD_LIBRARY_PATH=/opt/rh/llvm-toolset-7.0/root/usr/lib64 -e LLVM_CONFIG_PATH=/opt/rh/llvm-toolset-7.0/root/usr/bin/llvm-config
8181
before-script-linux: |
8282
yum install -y epel-release && yum install -y krb5-devel llvm-toolset-7.0-clang llvm-toolset-7.0-llvm-devel
83+
- name: Upload wheels
84+
if: github.ref == 'refs/heads/master'
85+
uses: actions/upload-artifact@v3
86+
with:
87+
name: wheels
88+
path: dist

0 commit comments

Comments
 (0)