ci: install pkg-config in bootstrap step

This commit is contained in:
Jozef Steinhübl 2024-07-21 14:55:16 +02:00
parent 3071c2d2d5
commit 2c7283d23f
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F

View file

@ -30,16 +30,16 @@ jobs:
- target: x86_64-unknown-linux-gnu - target: x86_64-unknown-linux-gnu
runner: ubuntu-latest runner: ubuntu-latest
archive: tar.gz archive: tar.gz
bootstrap: sudo apt-get update && sudo apt-get install -y libssl-dev bootstrap: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config
- target: x86_64-apple-darwin - target: x86_64-apple-darwin
runner: macos-latest runner: macos-latest
archive: tar.gz archive: tar.gz
bootstrap: brew install openssl bootstrap: brew install openssl pkg-config
- target: aarch64-apple-darwin - target: aarch64-apple-darwin
runner: macos-latest runner: macos-latest
archive: tar.gz archive: tar.gz
bootstrap: brew install openssl bootstrap: brew install openssl pkg-config
- target: x86_64-pc-windows-msvc - target: x86_64-pc-windows-msvc
runner: windows-latest runner: windows-latest