From 4966daf0a44b4ffdaecfd74026364b15c9133fd4 Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Fri, 8 Dec 2023 13:30:08 +0100 Subject: [PATCH] ci: switch to fedora container(s) Switching to Fedora containers due to an updated musl in alpine causing build errors in Go bindings to sqlite, see: https://github.com/mattn/go-sqlite3/issues/1164 --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 04659cbd2..5448c6a85 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,11 +16,11 @@ init: configure-generators: stage: gen - image: alpine:latest + image: fedora:latest variables: PYTHONUNBUFFERED: 1 script: - - apk add -U go python3 gpgme-dev + - dnf install -qy golang python3 gpgme-devel - ./test/scripts/configure-generators generator-config.yml artifacts: paths: @@ -36,11 +36,11 @@ generator-trigger: check-build-coverage: stage: verify - image: alpine:latest + image: fedora:latest variables: PYTHONUNBUFFERED: 1 script: - - apk add -U go python3 gpgme-dev s3cmd + - dnf install -qy golang python3 gpgme-devel s3cmd - ./test/scripts/check-build-coverage ./s3configs/ cache: key: testcache