[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 15/18] gitlab: upgrade the job definition for s390x to 20.04
From: |
Alex Bennée |
Subject: |
[PULL 15/18] gitlab: upgrade the job definition for s390x to 20.04 |
Date: |
Tue, 1 Mar 2022 09:47:12 +0000 |
The new s390x machine has more of everything including the OS. As
18.04 will soon be going we might as well get onto something moderately
modern.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Cc: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220225172021.3493923-16-alex.bennee@linaro.org>
diff --git a/.gitlab-ci.d/custom-runners.yml b/.gitlab-ci.d/custom-runners.yml
index 056c374619..3e76a2034a 100644
--- a/.gitlab-ci.d/custom-runners.yml
+++ b/.gitlab-ci.d/custom-runners.yml
@@ -14,6 +14,6 @@ variables:
GIT_STRATEGY: clone
include:
- - local: '/.gitlab-ci.d/custom-runners/ubuntu-18.04-s390x.yml'
+ - local: '/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml'
- local: '/.gitlab-ci.d/custom-runners/ubuntu-20.04-aarch64.yml'
- local: '/.gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml'
diff --git a/.gitlab-ci.d/custom-runners/ubuntu-18.04-s390x.yml
b/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml
similarity index 87%
rename from .gitlab-ci.d/custom-runners/ubuntu-18.04-s390x.yml
rename to .gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml
index f39d874a1e..0333872113 100644
--- a/.gitlab-ci.d/custom-runners/ubuntu-18.04-s390x.yml
+++ b/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml
@@ -1,12 +1,12 @@
-# All ubuntu-18.04 jobs should run successfully in an environment
+# All ubuntu-20.04 jobs should run successfully in an environment
# setup by the scripts/ci/setup/build-environment.yml task
-# "Install basic packages to build QEMU on Ubuntu 18.04/20.04"
+# "Install basic packages to build QEMU on Ubuntu 20.04/20.04"
-ubuntu-18.04-s390x-all-linux-static:
+ubuntu-20.04-s390x-all-linux-static:
needs: []
stage: build
tags:
- - ubuntu_18.04
+ - ubuntu_20.04
- s390x
rules:
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~
/^staging/'
@@ -21,11 +21,11 @@ ubuntu-18.04-s390x-all-linux-static:
- make --output-sync -j`nproc` check V=1
- make --output-sync -j`nproc` check-tcg V=1
-ubuntu-18.04-s390x-all:
+ubuntu-20.04-s390x-all:
needs: []
stage: build
tags:
- - ubuntu_18.04
+ - ubuntu_20.04
- s390x
rules:
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~
/^staging/'
@@ -37,11 +37,11 @@ ubuntu-18.04-s390x-all:
- make --output-sync -j`nproc`
- make --output-sync -j`nproc` check V=1
-ubuntu-18.04-s390x-alldbg:
+ubuntu-20.04-s390x-alldbg:
needs: []
stage: build
tags:
- - ubuntu_18.04
+ - ubuntu_20.04
- s390x
rules:
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~
/^staging/'
@@ -58,11 +58,11 @@ ubuntu-18.04-s390x-alldbg:
- make --output-sync -j`nproc`
- make --output-sync -j`nproc` check V=1
-ubuntu-18.04-s390x-clang:
+ubuntu-20.04-s390x-clang:
needs: []
stage: build
tags:
- - ubuntu_18.04
+ - ubuntu_20.04
- s390x
rules:
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~
/^staging/'
@@ -78,11 +78,11 @@ ubuntu-18.04-s390x-clang:
- make --output-sync -j`nproc`
- make --output-sync -j`nproc` check V=1
-ubuntu-18.04-s390x-tci:
+ubuntu-20.04-s390x-tci:
needs: []
stage: build
tags:
- - ubuntu_18.04
+ - ubuntu_20.04
- s390x
rules:
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~
/^staging/'
@@ -97,11 +97,11 @@ ubuntu-18.04-s390x-tci:
- ../configure --disable-libssh --enable-tcg-interpreter
- make --output-sync -j`nproc`
-ubuntu-18.04-s390x-notcg:
+ubuntu-20.04-s390x-notcg:
needs: []
stage: build
tags:
- - ubuntu_18.04
+ - ubuntu_20.04
- s390x
rules:
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~
/^staging/'
--
2.30.2
- [PULL 02/18] tests/docker: add NOUSER for alpine image, (continued)
- [PULL 02/18] tests/docker: add NOUSER for alpine image, Alex Bennée, 2022/03/01
- [PULL 03/18] tests/lcitool: update to latest version, Alex Bennée, 2022/03/01
- [PULL 04/18] tests/docker: update debian-arm64-cross with lcitool, Alex Bennée, 2022/03/01
- [PULL 05/18] tests/docker: update debian-s390x-cross with lcitool, Alex Bennée, 2022/03/01
- [PULL 08/18] scripts/ci: allow for a secondary runner, Alex Bennée, 2022/03/01
- [PULL 06/18] tests/docker: introduce debian-riscv64-test-cross, Alex Bennée, 2022/03/01
- [PULL 10/18] tests/tcg/ppc64: clean-up handling of byte-reverse, Alex Bennée, 2022/03/01
- [PULL 12/18] tests/tcg: add sha512 test, Alex Bennée, 2022/03/01
- [PULL 14/18] travis.yml: Update the s390x jobs to Ubuntu Focal, Alex Bennée, 2022/03/01
- [PULL 09/18] gitlab: add a new aarch32 custom runner definition, Alex Bennée, 2022/03/01
- [PULL 15/18] gitlab: upgrade the job definition for s390x to 20.04,
Alex Bennée <=
- [PULL 16/18] tests/tcg: completely disable threadcount for sh4, Alex Bennée, 2022/03/01
- [PULL 13/18] tests/tcg: add vectorised sha512 versions, Alex Bennée, 2022/03/01
- [PULL 07/18] scripts/ci: add build env rules for aarch32 on aarch64, Alex Bennée, 2022/03/01
- [PULL 17/18] semihosting/arm-compat: replace heuristic for softmmu SYS_HEAPINFO, Alex Bennée, 2022/03/01
- [PULL 18/18] tests/tcg: port SYS_HEAPINFO to a system test, Alex Bennée, 2022/03/01
- [PULL 11/18] tests/tcg: build sha1-vector with O3 and compare, Alex Bennée, 2022/03/01
- Re: [PULL 00/18] testing and semihosting updates, Peter Maydell, 2022/03/02