summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2022-01-02 03:57:30 +0000
committerColin Watson <cjwatson@debian.org>2022-01-02 03:57:30 +0000
commit914f33ebbaebb97e4b42b2e4affa91e795a8e800 (patch)
tree4a9857c0c0fb8494982f7cf9bb84c49b832f1570 /.gitlab-ci.yml
parentdda31d41b85de4ba128e28aa995cba00421fa6f2 (diff)
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.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
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