Skip to content
Snippets Groups Projects
Commit 0d38f258 authored by Ujwal Kundur's avatar Ujwal Kundur
Browse files

Fix Fix 2

Update gitlab-runner sources to use bullseye instead of buster.
Delaying this would lead to GLIBC compatibility issues.
A long term solution would be to base the debian_base image on debian
stable instead of testing.
parent 6c5dce59
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !309. Comments created here will be created in the context of that merge request.
......@@ -17,6 +17,7 @@ ENV CLICOLOR_FORCE=1 \
## Install additional packages. Remove the auto-cleanup functionality
## for docker, as we're using the new buildkit cache instead.
## We also install gitlab-runner, from the bullseye package (as bookworm is not available atm)
## TODO: libyaml-cpp-dev is a dependency for afterburner. We can probably remove
## this once afterburner is added to spack
RUN --mount=type=cache,target=/var/cache/apt \
......@@ -69,6 +70,8 @@ RUN --mount=type=cache,target=/var/cache/apt \
&& curl -L \
"https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" \
| bash \
&& sed -i "s/bookworm/bullseye/" \
/etc/apt/sources.list.d/runner_gitlab-runner.list \
&& apt-get -yqq update \
&& apt-get -yqq install --no-install-recommends \
gitlab-runner \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment