fix(ci): add make to build dependencies in miroir-release workflow

The rdkafka-sys crate build was failing with 'No such file or directory (os error 2)'
because the make command was missing from the build dependencies. This is required
for building librdkafka statically. Adding make to the apt-get install list.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-07-02 09:19:00 -04:00
parent 03f228c62e
commit 9c617001ab

View file

@ -105,7 +105,7 @@ spec:
export PATH="/usr/local/cargo/bin:$PATH"
# Install git and build dependencies
apt-get update -qq && apt-get install -y -qq g++ git pkg-config libssl-dev musl-tools >/dev/null 2>&1
apt-get update -qq && apt-get install -y -qq g++ git make pkg-config libssl-dev musl-tools >/dev/null 2>&1
# Ensure c++ symlink exists (required by librdkafka configure)
update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 50 || ln -sf /usr/bin/g++ /usr/bin/c++