Skip to content
Snippets Groups Projects

.gitlab-ci.yml: don't build detector

Merged Dmitry Kalinkin requested to merge pr/no_detector_build into master
1 file
+ 3
10
Compare changes
  • Side-by-side
  • Inline
+ 3
10
@@ -3,7 +3,6 @@ image: ${BENCHMARKS_REGISTRY}/${BENCHMARKS_CONTAINER}:${BENCHMARKS_TAG}
@@ -3,7 +3,6 @@ image: ${BENCHMARKS_REGISTRY}/${BENCHMARKS_CONTAINER}:${BENCHMARKS_TAG}
variables:
variables:
DETECTOR: epic
DETECTOR: epic
DETECTOR_CONFIG: epic_craterlake
DETECTOR_CONFIG: epic_craterlake
DETECTOR_REPOSITORYURL: 'https://github.com/eic/epic.git'
default:
default:
before_script:
before_script:
@@ -30,7 +29,6 @@ default:
@@ -30,7 +29,6 @@ default:
stages:
stages:
- status-pending
- status-pending
- config
- config
- initialize
- compile
- compile
- run
- run
- benchmarks1
- benchmarks1
@@ -78,12 +76,6 @@ common:setup:
@@ -78,12 +76,6 @@ common:setup:
script:
script:
- git clone -b "${COMMON_BENCH_VERSION}" https://eicweb.phy.anl.gov/EIC/benchmarks/common_bench.git setup
- git clone -b "${COMMON_BENCH_VERSION}" https://eicweb.phy.anl.gov/EIC/benchmarks/common_bench.git setup
- source setup/bin/env.sh && ./setup/bin/install_common.sh
- source setup/bin/env.sh && ./setup/bin/install_common.sh
common:detector:
stage: initialize
needs: ["common:setup"]
script:
- source .local/bin/env.sh && build_detector.sh
- mkdir_local_data_link sim_output
- mkdir_local_data_link sim_output
- mkdir -p results
- mkdir -p results
- mkdir -p config
- mkdir -p config
@@ -91,15 +83,16 @@ common:detector:
@@ -91,15 +83,16 @@ common:detector:
.compile_benchmark:
.compile_benchmark:
needs:
needs:
- ["common:detector"]
- ["common:setup"]
before_script:
before_script:
- source .local/bin/env.sh
- source .local/bin/env.sh
.rec_benchmark:
.rec_benchmark:
needs:
needs:
- ["common:detector"]
- ["common:setup"]
before_script:
before_script:
- source .local/bin/env.sh
- source .local/bin/env.sh
 
- source /opt/detector/epic-main/setup.sh
- ls -lrtha
- ls -lrtha
- ln -s "${LOCAL_DATA_PATH}/sim_output" sim_output
- ln -s "${LOCAL_DATA_PATH}/sim_output" sim_output
- ln -s "${LOCAL_DATA_PATH}/datasets/data" data
- ln -s "${LOCAL_DATA_PATH}/datasets/data" data
Loading