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 5ddd502 commit 317a06fCopy full SHA for 317a06f
.github/workflows/pypi.yaml
@@ -48,7 +48,20 @@ jobs:
48
args: --release --out dist --find-interpreter
49
sccache: 'true'
50
manylinux: auto
51
- before-script-linux: yum install -y perl-IPC-Cmd
+ before-script-linux: |
52
+ # If we're running on rhel centos, install needed packages.
53
+ if command -v yum &> /dev/null; then
54
+ yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic
55
+
56
+ # If we're running on i686 we need to symlink libatomic
57
+ # in order to build openssl with -latomic flag.
58
+ if [[ ! -d "/usr/lib64" ]]; then
59
+ ln -s /usr/lib/libatomic.so.1 /usr/lib/libatomic.so
60
+ fi
61
+ else
62
+ # If we're running on debian-based system.
63
+ apt update -y && apt-get install -y libssl-dev openssl pkg-config
64
65
- name: Upload wheels
66
uses: actions/upload-artifact@v4
67
with:
0 commit comments