Skip to content
Snippets Groups Projects
Commit 6089bc92 authored by Klaus Reuter's avatar Klaus Reuter
Browse files

Update .gitlab-ci.yml

parent c8d3b2ce
Branches
No related tags found
No related merge requests found
Pipeline #138087 failed
...@@ -11,7 +11,8 @@ cache: &global_cache ...@@ -11,7 +11,8 @@ cache: &global_cache
build-job: # This job runs in the build stage, which runs first. build-job: # This job runs in the build stage, which runs first.
stage: build stage: build
tag: cloud tags:
- cloud
script: script:
- echo "Compiling the code..." - echo "Compiling the code..."
- echo "Compile complete." - echo "Compile complete."
...@@ -20,7 +21,8 @@ build-job: # This job runs in the build stage, which runs first. ...@@ -20,7 +21,8 @@ build-job: # This job runs in the build stage, which runs first.
unit-test-job: # This job runs in the test stage. unit-test-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully. stage: test # It only starts when the job in the build stage completes successfully.
tag: cloud-gpu tags:
- cloud-gpu
cache: cache:
# inherit all global cache settings # inherit all global cache settings
<<: *global_cache <<: *global_cache
...@@ -31,7 +33,8 @@ unit-test-job: # This job runs in the test stage. ...@@ -31,7 +33,8 @@ unit-test-job: # This job runs in the test stage.
lint-test-job: # This job also runs in the test stage. lint-test-job: # This job also runs in the test stage.
stage: test # It can run at the same time as unit-test-job (in parallel). stage: test # It can run at the same time as unit-test-job (in parallel).
tag: cloud tags:
- cloud
cache: cache:
# inherit all global cache settings # inherit all global cache settings
<<: *global_cache <<: *global_cache
...@@ -42,7 +45,8 @@ lint-test-job: # This job also runs in the test stage. ...@@ -42,7 +45,8 @@ lint-test-job: # This job also runs in the test stage.
deploy-job: # This job runs in the deploy stage. deploy-job: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
tag: cloud tags:
- cloud
cache: cache:
# inherit all global cache settings # inherit all global cache settings
<<: *global_cache <<: *global_cache
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment