open5gs/.gitlab-ci.yml
Sviatoslav Petriv e6aef22d00 My first commit
2023-12-15 12:26:33 +02:00

32 lines
568 B
YAML

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"