From a2e296eada36b00b2de497881197d71eef1be043 Mon Sep 17 00:00:00 2001 From: William E Warriner <wwarr@uab.edu> Date: Mon, 17 Jul 2023 15:03:30 -0500 Subject: [PATCH] added runner tag --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0f356d5..dfb3080 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,21 @@ build-job: stage: build + tags: + - rcds script: - echo "Hello, $GITLAB_USER_LOGIN" test-job1: stage: test + tags: + - rcds script: - echo "This job tests something" test-job2: stage: test + tags: + - rcds script: - echo "This job tests something, but takes more time than test-job1" - echo "Sleeps for 20 seconds" @@ -17,6 +23,8 @@ test-job2: deploy-prod: stage: deploy + tags: + - rcds script: - echo "This job deploys something from $CI_COMMIT_BRANCH branch." environment: production -- GitLab