Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devops:ci [2022/03/22 09:52] – robberth | devops:ci [2022/09/02 14:04] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 20: | Line 20: | ||
=== HTTPS === | === HTTPS === | ||
You can use the environment variable $CI_JOB_TOKEN for free. It's included. You don't have to do anything. | You can use the environment variable $CI_JOB_TOKEN for free. It's included. You don't have to do anything. | ||
- | < | + | < |
some_early_stage: | some_early_stage: | ||
script: | script: | ||
Line 26: | Line 26: | ||
</ | </ | ||
+ | ==== Propagating CI triggers ==== | ||
+ | We want the main pipeline to be triggered if a commit happens in ANY of the repositories that the pipeline depends on. \\ | ||
+ | This can be achieved by putting the following '' | ||
+ | <code yaml> | ||
+ | trigger-main: | ||
+ | trigger: | ||
+ | project: robotlab/ | ||
+ | branch: main | ||
+ | strategy: depend | ||
+ | </ | ||
+ | I learned that here: https:// |