Skip to content

Commit

Permalink
Mas fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeceHumphreys committed Dec 6, 2023
1 parent 40e6cdf commit a9d8a3e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ jobs:
else
echo "OPENSSL_DIR=/usr/lib/x86_64-linux-gnu" >> $GITHUB_ENV
fi
- name: Set PKG_CONFIG_PATH for OpenSSL
run: |
if [ "${{ matrix.target }}" = "aarch64" ]; then
echo "PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/lib/aarch64-linux-gnu/pkgconfig" >> $GITHUB_ENV
elif [ "${{ matrix.target }}" = "armv7" ]; then
echo "PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/lib/arm-linux-gnueabihf/pkgconfig" >> $GITHUB_ENV
else
echo "PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV
fi
- name: Build wheels with verbose output
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit a9d8a3e

Please sign in to comment.