From e6aef22d00588faa6e2626a75fd4be79826b67f2 Mon Sep 17 00:00:00 2001 From: Sviatoslav Petriv Date: Fri, 15 Dec 2023 12:26:33 +0200 Subject: [PATCH] My first commit --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..fd49b09 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,32 @@ +variables: + GITLAB_SHARED_RUNNER: rubik + +build-job: + tags: + - $GITLAB_SHARED_RUNNER + stage: build + script: + - echo "Hello, $GITLAB_USER_LOGIN!" + +test-job1: + tags: + - $GITLAB_SHARED_RUNNER + stage: test + script: + - echo "This job tests something." + +job_small: + script: + - echo "this job runs on the default (small) Linux instance" + +job_medium: + tags: + - saas-linux-medium-amd64 + script: + - echo "this job runs on the medium Linux instance" + +job_large: + tags: + - saas-linux-large-amd64 + script: + - echo "this job runs on the large Linux instance"