File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ workflow:
1313default :
1414 tags :
1515 - docker
16- # Image from https://hub.docker.com/_/gcc/ based on Debian
17- image : gcc:9
16+ image : ' debian:bookworm-slim'
1817
1918# https://docs.gitlab.com/ee/ci/yaml/yaml_optimization.html#reference-tags
2019.snippets :
@@ -30,12 +29,14 @@ default:
3029
3130whitespace :
3231 stage : test
32+ before_script :
33+ - apt-get update &&
34+ apt-get install -y git
3335 script :
3436 - git diff-tree --check origin/master HEAD
3537
3638# Make sure commits are GPG signed
3739ci-fairy :
38- image : ' debian:bookworm-slim'
3940 stage : test
4041 script :
4142 - apt update
@@ -57,7 +58,7 @@ autoconf:
5758 stage : build
5859 before_script :
5960 - apt-get update &&
60- apt-get install -y zip doxygen git
61+ apt-get install -y zip doxygen git automake libtool make
6162 - !reference [.snippets, git_prep]
6263 script :
6364 - ./autogen.sh
7778 stage : build
7879 before_script :
7980 - apt-get update &&
80- apt-get install -y cmake ninja-build
81+ apt-get install -y cmake ninja-build git
8182 - !reference [.snippets, git_prep]
8283 script :
8384 - mkdir build
You can’t perform that action at this time.
0 commit comments