Skip to content

Commit

Permalink
Simplify build script
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeceHumphreys committed Dec 6, 2023
1 parent eef4cf9 commit b632b44
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
target: [x86_64, x86, aarch64, armv7]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
# Install OpenSSL and pkg-config
- name: Install OpenSSL
run: sudo apt-get update && sudo apt-get install -y libssl-dev libudev-dev pkg-config
# Set environment variables for OpenSSL
- name: Set OpenSSL environment variables
run: |
# Show files in /usr/local/
ls -l /usr/local/
# Set environment variables for OpenSSL
export OPENSSL_DIR=/usr/local/opt/openssl
- name: Check pkg-config for OpenSSL
run: pkg-config --libs --cflags openssl
- name: Build wheels with verbose output
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit b632b44

Please sign in to comment.