Skip to content
Snippets Groups Projects
Commit 6cd590c4 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

gitlab-ci: Workaround archlinux issue by updating glibc to 2.33-4


Remove this workaround once the docker image of archlinux ships glibc
2.33-4 by default. Currently it still uses the old 2.33-3.

Partially addresses: #57

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent d3e38c87
No related branches found
No related tags found
No related merge requests found
Pipeline #8987 failed
......@@ -347,6 +347,14 @@ test:archlinux:
- |
set -eux
# Manually update to the latest glibc-2.33-4 to workaround the issue
# https://gitlab.steamos.cloud/steamrt/steam-runtime-tools/-/issues/57
# FIXME: remove this once it landed in the latest archlinux docker image
curl -LO "https://mirrors.kernel.org/archlinux/core/os/x86_64/glibc-2.33-4-x86_64.pkg.tar.zst"
curl -LO "https://mirrors.kernel.org/archlinux/core/os/x86_64/glibc-2.33-4-x86_64.pkg.tar.zst.sig"
gpg --homedir=/etc/pacman.d/gnupg --verify glibc-2.33-4-x86_64.pkg.tar.zst.sig
bsdtar -C / -xvf glibc-2.33-4-x86_64.pkg.tar.zst
# Enable multilib repository
echo -e "\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment