open5gs/.gitlab-ci.yml

21 lines
514 B
YAML
Raw Normal View History

2023-12-15 10:26:33 +00:00
variables:
GITLAB_SHARED_RUNNER: rubik
build-job:
tags:
- $GITLAB_SHARED_RUNNER
stage: build
script:
2023-12-15 10:31:31 +00:00
- echo "Hello, $GITLAB_USER_LOGIN! The runner with name rubik works fine, without any problems"
2023-12-15 10:26:33 +00:00
test-job1:
tags:
- $GITLAB_SHARED_RUNNER
stage: test
script:
2023-12-15 10:31:31 +00:00
- echo "This job tests something. The runner with name rubik works fine, without any problems"
2023-12-15 10:26:33 +00:00
job_small:
script:
2023-12-15 10:31:31 +00:00
- echo "this job runs on the default (small) Linux instance. This runner wors fine. Without any problems"