Skip to content

Commit 9fc8fc4

Browse files
xnorpxjmvalin
authored andcommitted
Fix Gitlab CI
Signed-off-by: Jean-Marc Valin <[email protected]>
1 parent 5023249 commit 9fc8fc4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ workflow:
1313
default:
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

3130
whitespace:
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
3739
ci-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
@@ -77,7 +78,7 @@ cmake:
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

0 commit comments

Comments
 (0)