From 9c617001abb5cf82a0ceee967bd2dac383cf5ca4 Mon Sep 17 00:00:00 2001 From: jedarden Date: Thu, 2 Jul 2026 09:19:00 -0400 Subject: [PATCH] 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 --- k8s/argo-workflows/miroir-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/argo-workflows/miroir-release.yaml b/k8s/argo-workflows/miroir-release.yaml index 92953d7..9250a49 100644 --- a/k8s/argo-workflows/miroir-release.yaml +++ b/k8s/argo-workflows/miroir-release.yaml @@ -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++