We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bb742 commit 31ecb52Copy full SHA for 31ecb52
.github/workflows/python-test.yml
@@ -74,9 +74,15 @@ jobs:
74
- name: Build wheel
75
uses: PyO3/maturin-action@v1
76
with:
77
- args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml
+ args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml --features kerberos
78
sccache: 'true'
79
manylinux: '2014'
80
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
81
before-script-linux: |
82
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