summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2020-04-06 14:48:11 +0100
committerSimon McVittie <smcv@collabora.com>2022-02-25 14:17:01 +0000
commit32b27f273aa33b1e8b32fffefcbbfe923853a1fc (patch)
treee1df7b797b18838a21dce93057717797abd58b0a /.gitlab-ci.yml
parentfc2353f210ed7fe12396fc9448b953b4ab8100d1 (diff)
downloaddbus-32b27f273aa33b1e8b32fffefcbbfe923853a1fc.tar.gz
CI: Build on Debian 10 'buster' by default
Previously, we built on Debian 9 'stretch' by default, and on Debian 10 'buster' only on request. Let's reverse that so that we get more modern toolchains, before Debian 9 'stretch' reaches EOL. Signed-off-by: Simon McVittie <smcv@collabora.com> (cherry picked from commit 73cfcb95c6f122b741a56450036c865807a4d64f)
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1e65c1e0..583f05ec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,7 +20,7 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
-image: debian:stretch-slim
+image: debian:buster-slim
stages:
- build
@@ -45,11 +45,11 @@ variables:
ci_parallel: "2"
ci_sudo: "yes"
ci_distro: "debian"
- ci_suite: "stretch"
+ ci_suite: "buster"
build:production:
stage: build
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_variant: "production"
script: &script
@@ -58,7 +58,7 @@ build:production:
build:debug:
stage: build
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_variant: "debug"
script: *script
@@ -66,7 +66,7 @@ build:debug:
build:reduced:
stage: build
when: manual
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_variant: "reduced"
script: *script
@@ -74,21 +74,21 @@ build:reduced:
build:legacy:
stage: build
when: manual
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_variant: "legacy"
script: *script
build:cmake:
stage: build
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_buildsys: "cmake-dist"
script: *script
build:i686-w64-mingw32-debug:
stage: build
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_host: "i686-w64-mingw32"
ci_variant: "debug"
@@ -97,7 +97,7 @@ build:i686-w64-mingw32-debug:
build:i686-w64-mingw32-cmake:
stage: build
when: manual
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_buildsys: "cmake"
ci_host: "i686-w64-mingw32"
@@ -105,7 +105,7 @@ build:i686-w64-mingw32-cmake:
build:x86_64-w64-mingw32:
stage: build
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_host: "i686-w64-mingw32"
script: *script
@@ -113,7 +113,7 @@ build:x86_64-w64-mingw32:
build:x86_64-w64-mingw32-cmake-debug:
stage: build
when: manual
- image: "debian:stretch-slim"
+ image: "debian:buster-slim"
variables:
ci_buildsys: "cmake"
ci_host: "i686-w64-mingw32"
@@ -128,12 +128,12 @@ build:jessie:
ci_suite: "jessie"
script: *script
-build:buster:
+build:stretch:
when: manual
stage: build
- image: "debian:buster-slim"
+ image: "debian:stretch-slim"
variables:
- ci_suite: "buster"
+ ci_suite: "stretch"
script: *script
build:xenial: