Skip to content

Commit

Permalink
Account for both CentOS and Debian containers
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Apr 16, 2024
1 parent 5ddd502 commit 317a06f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,20 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
before-script-linux: yum install -y perl-IPC-Cmd
before-script-linux: |
# If we're running on rhel centos, install needed packages.
if command -v yum &> /dev/null; then
yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic
# If we're running on i686 we need to symlink libatomic
# in order to build openssl with -latomic flag.
if [[ ! -d "/usr/lib64" ]]; then
ln -s /usr/lib/libatomic.so.1 /usr/lib/libatomic.so
fi
else
# If we're running on debian-based system.
apt update -y && apt-get install -y libssl-dev openssl pkg-config
fi
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 317a06f

Please sign in to comment.