From 353be10230cf255b4262eae0fe4c28e0ed6d131b Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Mon, 10 Oct 2022 20:15:45 +0000
Subject: [PATCH] feat: remove testing of obsolete repositories

---
 .gitlab-ci.yml                | 20 --------------------
 tests/tutorial/config.yml     |  9 ---------
 tests/tutorial/part1.sh       | 19 -------------------
 tests/tutorial/quick-start.sh | 11 -----------
 4 files changed, 59 deletions(-)
 delete mode 100644 tests/tutorial/config.yml
 delete mode 100755 tests/tutorial/part1.sh
 delete mode 100755 tests/tutorial/quick-start.sh

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7e4c8058..66c266e3b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -584,26 +584,6 @@ juggler:master:
     project: EIC/juggler
   allow_failure: true
 
-.test:
-  image: eicweb.phy.anl.gov:4567/containers/eic_container/jug_xl:${NIGHTLY_TAG}
-  stage: test
-  needs:
-    - version
-    - jug_xl:nightly
-  rules:
-    - if: '$CI_COMMIT_BRANCH == "master"'
-      when: on_success
-    - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
-      when: on_success
-    - when: never
-  before_script:
-    - echo "Testing the new container setup"
-  after_script:
-    - echo "Testing completed"
-
-include:
-  - local: 'tests/tutorial/config.yml'
-
 cleanup:
   stage: finalize
   dependencies:
diff --git a/tests/tutorial/config.yml b/tests/tutorial/config.yml
deleted file mode 100644
index 068ad0378..000000000
--- a/tests/tutorial/config.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-## Ensure the container still works for the new container
-## even with a strange environment setup
-
-
-test:tutorial:
-  extends: .test
-  script:
-    - tests/tutorial/quick-start.sh
-    - tests/tutorial/part1.sh
diff --git a/tests/tutorial/part1.sh b/tests/tutorial/part1.sh
deleted file mode 100755
index 476a2df3b..000000000
--- a/tests/tutorial/part1.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-source /opt/detector/setup.sh
-
-git clone https://eicweb.phy.anl.gov/EIC/tutorials/ip6_tutorial_1.git part1
-pushd part1
-cmake -B build -S . -DCMAKE_INSTALL_PREFIX=$EIC_SHELL_PREFIX -DCMAKE_CXX_STANDARD=17
-cmake --build build -j4 -- install
-dd_web_display --export gem_tracker.xml
-checkOverlaps -t 0.0001 -c gem_tracker.xml
-npdet_info dump gem_tracker.xml
-npsim  --runType run  --enableG4GPS \
-   --macroFile gps.mac \
-   --compactFile ./gem_tracker.xml \
-   --outputFile gem_tracker_sim.root
-
-root -b -q scripts/tutorial1_hit_position.cxx+
-root -b -q scripts/tutorial2_cell_size.cxx+
-popd
diff --git a/tests/tutorial/quick-start.sh b/tests/tutorial/quick-start.sh
deleted file mode 100755
index 6007a98f2..000000000
--- a/tests/tutorial/quick-start.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-git clone https://eicweb.phy.anl.gov/EIC/detectors/athena.git
-git clone https://eicweb.phy.anl.gov/EIC/detectors/ip6.git
-ln -s ../ip6/ip6 athena/ip6
-
-echo "PART 1: QUICK START"
-pushd athena
-source /opt/detector/setup.sh
-dd_web_display --export athena.xml
-popd
-- 
GitLab