1
0
mirror of https://github.com/hegerdes/gitlab-actions.git synced 2025-10-06 05:36:52 +02:00

fix: add gcompat to alpine core tools

This allows to run glibc executables on alpine

Signed-off-by: Henrik Gerdes <hegerdes@outlook.de>
This commit is contained in:
Henrik Gerdes
2024-09-27 20:44:48 +02:00
parent 4896bacd0c
commit f838c6b0da

View File

@@ -19,7 +19,7 @@
- |
# Installing core tools
if command -v apk > /dev/null; then
apk add --no-cache curl jq unzip tar gzip > /dev/null
apk add --no-cache curl jq unzip tar gzip gcompat > /dev/null
else
echo "The apk package manager does not exist. Skipping core tool install."
fi