[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-390-g740157058
Brought to you by:
sszy
|
From: sszy <ss...@us...> - 2023-12-13 09:53:20
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 7401570584c9b232594ad9791508b8ba51e87318 (commit)
from 60f6c9b694529ad1f764a6d4a720565fb50cca02 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 7401570584c9b232594ad9791508b8ba51e87318
Author: Sébastien Szymanski <seb...@ar...>
Date: Wed Dec 13 10:39:40 2023 +0100
.gitlab-ci.yml: use rules:if instead of except/only
except/only are deprecated.
-----------------------------------------------------------------------
Summary of changes:
.gitlab-ci.yml | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 13da20946..e1ace50f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,11 +2,9 @@
#
# Authors:
# kev...@ar...
+# seb...@ar...
#
-#workflow:
-# rules:
-# - if: $CI_PIPELINE_SOURCE == 'web'
-# - if: $CI_PIPELINE_SOURCE == 'schedule'
+
variables:
DOCKER_TLS_CERTDIR: "/certs"
@@ -43,13 +41,13 @@ stages:
expire_in: 1 week
build:
- except:
- - schedules
+ rules:
+ - if: $CI_PIPELINE_SOURCE != "schedule"
extends: .build_template
build-weekly:
- only:
- - schedules
+ rules:
+ - if: $CI_PIPELINE_SOURCE == "schedule"
extends: .build_template
artifacts:
name: "$ARMADEUS_PLATFORM-$CI_COMMIT_SHORT_SHA-images"
hooks/post-receive
--
armadeus
|