Skip to content
Snippets Groups Projects
Commit da8e0123 authored by Sylvester Joosten's avatar Sylvester Joosten
Browse files

Got rid of analyze stage right now, as we're not using it

parent 565be297
No related branches found
No related tags found
1 merge request!8First DVMP analysis
This commit is part of merge request !8. Comments created here will be created in the context of that merge request.
...@@ -9,7 +9,6 @@ default: ...@@ -9,7 +9,6 @@ default:
stages: stages:
- generate - generate
- process - process
- analyze
- collect - collect
- finish - finish
......
dis:run_test: dis:run_test:
stage: analyze stage: process
timeout: 1 hours timeout: 1 hours
script: script:
- bash dis/dis.sh - bash dis/dis.sh
......
...@@ -7,15 +7,8 @@ dvcs:process: ...@@ -7,15 +7,8 @@ dvcs:process:
paths: paths:
- results - results
dvcs:analysis:
stage: analyze
needs: ["dvcs:process"]
script:
- echo "THIS IS A PLACE HOLDER"
dvcs:results: dvcs:results:
stage: collect stage: collect
needs: ["dvcs:analysis"] needs: ["dvcs:process"]
script: script:
- echo "All DVCS benchmarks successful" - echo "All DVCS benchmarks successful"
...@@ -17,7 +17,7 @@ dvmp:generate: ...@@ -17,7 +17,7 @@ dvmp:generate:
script: script:
- ./dvmp/scripts/generate.sh --ebeam 10 --pbeam 100 --config jpsi_central --decay muon --decay electron - ./dvmp/scripts/generate.sh --ebeam 10 --pbeam 100 --config jpsi_central --decay muon --decay electron
dvmp:jpsi_central:process: dvmp:process:
stage: process stage: process
needs: ["dvmp:generate"] needs: ["dvmp:generate"]
timeout: 1 hour timeout: 1 hour
...@@ -27,15 +27,8 @@ dvmp:jpsi_central:process: ...@@ -27,15 +27,8 @@ dvmp:jpsi_central:process:
paths: paths:
- results - results
dvmp:jpsi_central:test_analysis:
stage: analyze
needs: ["dvmp:jpsi_central:process"]
script:
- echo "THIS IS A PLACE HOLDER"
dvmp:results: dvmp:results:
stage: collect stage: collect
needs: ["dvmp:jpsi_central:test_analysis"] needs: ["dvmp:process"]
script: script:
- echo "All DVMP benchmarks successful" - echo "All DVMP benchmarks successful"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment