From 914f33ebbaebb97e4b42b2e4affa91e795a8e800 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sun, 2 Jan 2022 03:57:30 +0000 Subject: Switch CI image to debian:unstable This gives us newer versions of various dependencies such as the autotools. * .gitlab-ci.yml (default:image): Switch from gcc to debian:unstable. (pre-commit:before_script, bootstrap:before_script): Explicitly install git. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08ab164e..874c4bdb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: gcc + image: debian:unstable stages: - bootstrap @@ -12,7 +12,7 @@ pre-commit: XDG_CACHE_HOME: "$CI_PROJECT_DIR/.cache" before_script: - apt -qq update - - apt -y -qq install pre-commit + - apt -y -qq install git pre-commit script: - pre-commit run -a cache: @@ -24,7 +24,7 @@ bootstrap: stage: bootstrap before_script: - apt -qq update - - apt -y -qq install autoconf automake autopoint gettext libtool + - apt -y -qq install autoconf automake autopoint gettext git libtool pkg-config script: - if test -d gnulib-src; then git -C gnulib-src pull; else git clone git://git.sv.gnu.org/gnulib gnulib-src; fi - rm -rf bootstrapped -- cgit v1.2.3