Skip to content
Snippets Groups Projects
Commit 51426095 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

fixing needs

parent b82c6a7c
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ default: ...@@ -19,6 +19,7 @@ default:
stages: stages:
- build - build
- data_init - data_init
- run
get_data: get_data:
stage: data_init stage: data_init
...@@ -31,6 +32,7 @@ get_data: ...@@ -31,6 +32,7 @@ get_data:
- mkdir -p sim_output - mkdir -p sim_output
generate_config: generate_config:
stage: run
needs: ["get_data"] needs: ["get_data"]
tags: tags:
- sodium - sodium
...@@ -39,6 +41,7 @@ generate_config: ...@@ -39,6 +41,7 @@ generate_config:
- mkdir -p config && ./bin/gen_ci_config --no-failure -p dis_ -i dis > config/dis_config.yml - mkdir -p config && ./bin/gen_ci_config --no-failure -p dis_ -i dis > config/dis_config.yml
dummy-pipeline: dummy-pipeline:
stage: run
needs: ["generate_config"] needs: ["generate_config"]
trigger: trigger:
include: include:
...@@ -47,6 +50,7 @@ dummy-pipeline: ...@@ -47,6 +50,7 @@ dummy-pipeline:
strategy: depend strategy: depend
dis-pipeline: dis-pipeline:
stage: run
needs: ["generate_config"] needs: ["generate_config"]
trigger: trigger:
include: include:
...@@ -55,6 +59,7 @@ dis-pipeline: ...@@ -55,6 +59,7 @@ dis-pipeline:
strategy: depend strategy: depend
final_report: final_report:
stage: run
tags: tags:
- sodium - sodium
needs: ["dis-pipeline","dummy-pipeline"] needs: ["dis-pipeline","dummy-pipeline"]
......
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