Skip to content
Snippets Groups Projects
Commit 43e1d8a0 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

[skip ci] ci

parent 599aa902
No related branches found
No related tags found
1 merge request!25Draft: Resolve "Adapt to new sensor constructors in core"
...@@ -8,14 +8,20 @@ include: ...@@ -8,14 +8,20 @@ include:
- '.ci_templates/.install_core.yml' - '.ci_templates/.install_core.yml'
- '.ci_templates/.preliminaries.yml' - '.ci_templates/.preliminaries.yml'
# RUN the pipeline if it is triggered:
# - manually from web
# - scheduled
# - by a merge_request event
# - by a commit (push)
# DO NOT RUN the pipeline after a commit in a MR (avoid duplicated pipelines)
workflow: workflow:
rules: rules:
- if: '$CI_PIPELINE_SOURCE == "web"' - if: '$CI_PIPELINE_SOURCE == "web"'
when: always - if: '$CI_PIPELINE_SOURCE == "schedule"'
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"' - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH'
- if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS' - if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS'
when: never when: never
- if: '$CI_COMMIT_BRANCH'
stages: stages:
- license - license
......
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