Skip to content
Snippets Groups Projects
Commit f88e7e83 authored by Daniele Tavagnacco's avatar Daniele Tavagnacco
Browse files

Update .gitlab-ci.yml with deploy always job

parent 8d5623d2
No related branches found
No related tags found
No related merge requests found
Pipeline #26547 failed
stages:
- build # section name of the CI pipeline
- test # other section executed AFTER 'build'
- deploy # other section AFTER 'build'
variables:
GLOBAL_VAR_FOR_CI: unexpected text
......@@ -31,4 +32,14 @@ test_job_2:
- echo "Running more tests in group 2..."
- sleep 5
- echo "Testing complete."
needs: [test_job_1] # mark this step to be executed AFTER "test_job_1"
\ No newline at end of file
needs: [test_job_1] # mark this step to be executed AFTER "test_job_1"
deploy_job:
stage: deploy # section where to run the job
tags:
- git-run-ia2 # who is running the job
script:
- echo "Installing the program..."
- sleep 5
- echo "Program deployed"
when: always
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment