From 7a8df0877defeab1469fa498818d35019de18d77 Mon Sep 17 00:00:00 2001 From: Marie Piontek Date: Sat, 12 Aug 2023 15:29:19 +0000 Subject: [PATCH] ci: Fix libc musl not found --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf107b3dc..caf4a3f67 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,9 +30,10 @@ testCommit: # POSTGRES_PASSWORD: $POSTGRES_PASSWORD # POSTGRES_HOST_AUTH_METHOD: trust script: - - apt-get update && apt-get install -y git wget curl build-essential python3 + - apt-get update && apt-get install -y git wget curl build-essential python3 musl - curl https://sh.rustup.rs -sSf | sh -s -- -y - source "$HOME/.cargo/env" + - ln -s /lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1 - cp .config/ci.yml .config/default.yml - corepack enable - corepack prepare pnpm@latest --activate