public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Uladzimir Bely <ubely@ilbers.de>
To: isar-users@googlegroups.com
Subject: [PATCH v3 4/5] gitlab-ci.yml: Run 'fast' and 'full' only if specific variable set
Date: Fri, 26 May 2023 07:23:41 +0200	[thread overview]
Message-ID: <20230526052342.7945-5-ubely@ilbers.de> (raw)
In-Reply-To: <20230526052342.7945-1-ubely@ilbers.de>

Before the patch, any schedule run both 'fast' and 'full' jobs.
Now, to filter the required job, we should now specify `TESTSUITE`
variable. If not set, schedule will run only 'full' for compatibility
with current CI setups.

Signed-off-by: Uladzimir Bely <ubely@ilbers.de>
---
 .gitlab-ci.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b700015c..5117519a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -26,21 +26,22 @@ variables:
 dev-ci:
   <<: *common-build
   rules:
-    - if: $CI_PIPELINE_SOURCE != 'schedule'
+    - if: $TESTSUITE == 'dev' || $CI_PIPELINE_SOURCE != 'schedule'
   script:
     - scripts/ci_build.sh -T dev
 
 fast-ci:
   <<: *common-build
   rules:
-    - if: $CI_PIPELINE_SOURCE == 'schedule'
+    - if: $TESTSUITE == 'fast'
   script:
     - scripts/ci_build.sh -T fast
 
 full-ci:
   <<: *common-build
   rules:
-    - if: $CI_PIPELINE_SOURCE == 'schedule'
+    - if: $TESTSUITE == null && $CI_PIPELINE_SOURCE == 'schedule'
+    - if: $TESTSUITE == 'full'
   script:
     - PREVIOUS_SHA="$(cat .CI_COMMIT_SHA || true)"
     - if [ "$CI_COMMIT_SHA" != "$PREVIOUS_SHA" ]; then
-- 
2.20.1


  parent reply	other threads:[~2023-05-26  5:23 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-26  5:23 Uladzimir Bely
2023-05-26  5:23 ` [PATCH v3 1/5] testsuite: Dockerfile for docker-isar image Uladzimir Bely
2023-05-26  5:23 ` [PATCH v3 2/5] testsuite: Add README for docker-isar Uladzimir Bely
2023-05-26  5:23 ` [PATCH v3 3/5] gitlab-ci: Switch to `rules` instead of `except` and `only` Uladzimir Bely
2023-05-26  5:23 ` Uladzimir Bely [this message]
2023-05-26  5:23 ` [PATCH v3 5/5] gitlab-ci.yml: Add jobs that run with custom docker-isar image Uladzimir Bely
2023-05-26  7:03 ` Uladzimir Bely
2023-06-14  6:03 ` [PATCH v3 0/5] Use `docker-isar` image for maintainer test jobs Uladzimir Bely

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230526052342.7945-5-ubely@ilbers.de \
    --to=ubely@ilbers.de \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox