Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeceHumphreys committed Dec 6, 2023
1 parent 74dd42f commit 40e6cdf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7]
target: [x86_64, aarch64, armv7]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -33,12 +33,12 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libssl-dev libudev-dev pkg-config
- name: Set OPENSSL_DIR
run: |
if [ ${{ matrix.target }} = "aarch64" ]; then
export OPENSSL_DIR=/usr/lib/aarch64-linux-gnu
elif [ ${{ matrix.target }} = "armv7" ]; then
export OPENSSL_DIR=/usr/lib/arm-linux-gnueabihf
if [ "${{ matrix.target }}" = "aarch64" ]; then
echo "OPENSSL_DIR=/usr/lib/aarch64-linux-gnu" >> $GITHUB_ENV
elif [ "${{ matrix.target }}" = "armv7" ]; then
echo "OPENSSL_DIR=/usr/lib/arm-linux-gnueabihf" >> $GITHUB_ENV
else
export OPENSSL_DIR=/usr/lib/x86_64-linux-gnu
echo "OPENSSL_DIR=/usr/lib/x86_64-linux-gnu" >> $GITHUB_ENV
fi
- name: Build wheels with verbose output
uses: PyO3/maturin-action@v1
Expand Down

0 comments on commit 40e6cdf

Please sign in to comment.