From da8e01237fda0bad64e4665e2f475bc799f1c5bd Mon Sep 17 00:00:00 2001
From: Sylvester Joosten <sjoosten@anl.gov>
Date: Thu, 19 Nov 2020 22:20:08 +0000
Subject: [PATCH] Got rid of analyze stage right now, as we're not using it

---
 .gitlab-ci.yml  |  1 -
 dis/config.yml  |  2 +-
 dvcs/config.yml |  9 +--------
 dvmp/config.yml | 11 ++---------
 4 files changed, 4 insertions(+), 19 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e1a1d436..58e58a0c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,7 +9,6 @@ default:
 stages:
   - generate
   - process
-  - analyze
   - collect
   - finish
 
diff --git a/dis/config.yml b/dis/config.yml
index a300e5f0..c0dda0dc 100644
--- a/dis/config.yml
+++ b/dis/config.yml
@@ -1,5 +1,5 @@
 dis:run_test:
-  stage: analyze
+  stage: process
   timeout: 1 hours
   script:
     - bash dis/dis.sh
diff --git a/dvcs/config.yml b/dvcs/config.yml
index 9582ea62..73cfc8e8 100644
--- a/dvcs/config.yml
+++ b/dvcs/config.yml
@@ -7,15 +7,8 @@ dvcs:process:
     paths:
       - results
 
-dvcs:analysis:
-  stage: analyze
-  needs: ["dvcs:process"]
-  script:
-    - echo "THIS IS A PLACE HOLDER"
-
-
 dvcs:results:
   stage: collect
-  needs: ["dvcs:analysis"]
+  needs: ["dvcs:process"]
   script:
     - echo "All DVCS benchmarks successful"
diff --git a/dvmp/config.yml b/dvmp/config.yml
index 65eb4ab8..4a56b84e 100644
--- a/dvmp/config.yml
+++ b/dvmp/config.yml
@@ -17,7 +17,7 @@ dvmp:generate:
   script:
     - ./dvmp/scripts/generate.sh --ebeam 10 --pbeam 100 --config jpsi_central --decay muon --decay electron
 
-dvmp:jpsi_central:process:
+dvmp:process:
   stage: process
   needs: ["dvmp:generate"]
   timeout: 1 hour
@@ -27,15 +27,8 @@ dvmp:jpsi_central:process:
     paths:
       - results
 
-dvmp:jpsi_central:test_analysis:
-  stage: analyze
-  needs: ["dvmp:jpsi_central:process"]
-  script:
-    - echo "THIS IS A PLACE HOLDER"
-
-
 dvmp:results:
   stage: collect
-  needs: ["dvmp:jpsi_central:test_analysis"]
+  needs: ["dvmp:process"]
   script:
     - echo "All DVMP benchmarks successful"
-- 
GitLab