Skip to content

Commit

Permalink
use libssl under ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
andrusha committed Jul 25, 2023
1 parent 65203bd commit 7257b5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,18 +106,18 @@ jobs:
run: |
case "${{ matrix.target }}" in
"x86_64-unknown-linux-gnu")
packages="openssl-dev"
packages="libssl-dev"
;;
"i686-unknown-linux-gnu")
packages="gcc-multilib g++-multilib openssl-dev"
packages="gcc-multilib g++-multilib libssl-dev"
;;
"arm-unknown-linux-gnueabihf")
packages="gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf qemu-user"
packages="gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf qemu-user libssl-dev"
;;
esac
sudo apt-get update
sudo apt-get install -y openssl-dev
sudo apt-get install -y $packages
- run: |
echo "RUST_TEST_THREADS=1" >> $GITHUB_ENV
echo BINDGEN_EXTRA_CLANG_ARGS="--sysroot /usr/arm-linux-gnueabihf" >> $GITHUB_ENV
Expand Down

0 comments on commit 7257b5e

Please sign in to comment.