ci(release): install pkg-config and libssl-dev on Linux runners

The aarch64 Linux compile job fails on ubuntu-22.04-arm-32-cores
because openssl-sys can't find pkg-config or OpenSSL headers.
build-essential alone doesn't pull them in on this image.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-04-18 12:54:02 -04:00
parent d066592362
commit c8ee9291d4
No known key found for this signature in database

View file

@ -66,7 +66,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install -y build-essential pkg-config libssl-dev
- name: Install musl toolchain
if: matrix.musl