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

CI: trying a workflow without duplicated pipelines

parent 8d91d30d
No related branches found
No related tags found
1 merge request!25Draft: Resolve "Adapt to new sensor constructors in core"
...@@ -13,15 +13,16 @@ include: ...@@ -13,15 +13,16 @@ include:
# - scheduled # - scheduled
# - by a merge_request event # - by a merge_request event
# - by a commit (push) # - by a commit (push)
# DO NOT RUN the pipeline after a commit in a MR (avoid duplicated pipelines) # 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"'
- if: '$CI_PIPELINE_SOURCE == "schedule"' - 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
......
...@@ -31,7 +31,7 @@ class LoadBodydynamics ...@@ -31,7 +31,7 @@ class LoadBodydynamics
static bool aux_var; static bool aux_var;
}; };
#define WOLF_LOAD_BODYDYBAMICS \ #define WOLF_LOAD_BODYDYNAMICS \
namespace \ namespace \
{ \ { \
const bool WOLF_UNUSED aux_var_bodydynamics = wolf::LoadBodydynamics::aux_var; \ const bool WOLF_UNUSED aux_var_bodydynamics = wolf::LoadBodydynamics::aux_var; \
......
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