Skip to content
Snippets Groups Projects

Resolve "Add local storage for the pipeline"

Merged Whitney Armstrong requested to merge 16-add-local-storage-for-the-pipeline into master
Files
6
+ 3
13
dis:generate:
dis:generate:
stage: initialize
stage: generate
needs: []
needs: ["common:detector"]
timeout: 1 hours
timeout: 1 hours
cache:
cache:
key:
key:
@@ -9,23 +9,17 @@ dis:generate:
@@ -9,23 +9,17 @@ dis:generate:
prefix: "$CI_COMMIT_REF_SLUG"
prefix: "$CI_COMMIT_REF_SLUG"
paths:
paths:
- input/dis
- input/dis
artifacts:
paths:
- input
script:
script:
- bash benchmarks/dis/gen.sh --config barrel --ebeam 18 --pbeam 275
- bash benchmarks/dis/gen.sh --config barrel --ebeam 18 --pbeam 275
dis:process:
dis:process:
stage: process
stage: process
needs: ["detector", "dis:generate"]
needs: ["common:detector", "dis:generate"]
timeout: 1 hour
timeout: 1 hour
script:
script:
- source options/env.sh
- source options/env.sh
- ./util/compile_analyses.py dis
- ./util/compile_analyses.py dis
- ./benchmarks/dis/dis.sh --config barrel --ebeam 18 --pbeam 275
- ./benchmarks/dis/dis.sh --config barrel --ebeam 18 --pbeam 275
artifacts:
paths:
- results
retry:
retry:
max: 2
max: 2
when:
when:
@@ -44,7 +38,3 @@ dis:results:
@@ -44,7 +38,3 @@ dis:results:
needs: ["dis:process"]
needs: ["dis:process"]
script:
script:
- ./util/collect_tests.py dis
- ./util/collect_tests.py dis
artifacts:
paths:
- results/dis.json
- results/dis
Loading