Skip to content

Commit

Permalink
Remoe sccache
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Dec 29, 2023
1 parent 43f425f commit 3735500
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,17 @@ jobs:
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
working-directory: anise-py
before-script-linux: apt-get update -y && apt-get install -y libssl-dev openssl pkg-config
before-script-linux: |
# Source: https://github.com/sfackler/rust-openssl/issues/2036#issuecomment-1724324145
# 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
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@v3
Expand Down

0 comments on commit 3735500

Please sign in to comment.