We're going to build container images as part of the CI pipeline
soon, which means that we need to move all jobs that run in a
container image which is not provided by an external project (such
as the one that we use for DCO checking) later in the pipeline or
they will fail.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
.gitlab-ci.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 35895a4931..a8b16c6dfd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,6 +3,7 @@ variables:
stages:
- prebuild
+ - preliminary_checks
- native_build
- cross_build
@@ -196,7 +197,7 @@ mingw64-fedora-rawhide:
# be deployed to the web root:
#
https://gitlab.com/libvirt/libvirt/-/jobs/artifacts/master/download?job=w...
website:
- stage: prebuild
+ stage: preliminary_checks
before_script:
- *script_variables
script:
@@ -218,7 +219,7 @@ website:
codestyle:
- stage: prebuild
+ stage: preliminary_checks
before_script:
- *script_variables
script:
--
2.25.4