From 1fc1f0061666a6443201e939e8cfeb6dca2437d6 Mon Sep 17 00:00:00 2001
From: giordano <domenico.giordano@cern.ch>
Date: Thu, 19 Sep 2019 16:13:58 +0200
Subject: [PATCH] extending test parser to all existing tests

---
 .gitlab-ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cf16a2ca..c6d3b09f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
 stages:
-- test-parsers
 - build-hepwlbuilder
 - test-hepwlbuilder
+- test-parsers
 - build-hepwl
       
 # Build the hep-workload-builder image (which is used to build and test WLs using docker)
@@ -229,4 +229,5 @@ job_test-parsers:
   image: $CI_REGISTRY_IMAGE/hep-workload-builder:latest
   stage: test-parsers
   script:
-  - ./cms/gen-sim/cms-gen-sim/test_parser.sh
+  - aline=`printf '=%.0s' {1..100}`; 
+  - for aparser in `find . -name "test_parser.sh"`; do echo -e "$aline\nRunning $aparser\n$aline"; $aparser || exit 1; done
-- 
GitLab