Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.25 KiB
image: eicweb.phy.anl.gov:4567/containers/eic_container/eic_container:latest 

default:
  artifacts:
    paths:
      - results/
      - datasets/


stages:
  - data_init
  - detectors
    #- others

get_data:
  stage: data_init
  tags:
    - sodium
  script:
    - git clone https://eicweb.phy.anl.gov/EIC/datasets.git datasets
    - ln -s datasets/data
    - mkdir -p results
      #  artifacts:
      #    paths:
      #      - datasets

track_test1:
  stage: detectors
  tags:
    - sodium
  script:
    - bash trackers/dummy_test.sh
  allow_failure: true

cal_test1:
  stage: detectors
  tags:
    - sodium
  script:
    - bash calorimeters/dummy_test.sh
  allow_failure: true

cal_test2:
  stage: detectors
  tags:
    - sodium
  script:
    - root -b -q calorimeters/zdc_neutrons_reader.cxx
  allow_failure: true


pid_test1:
  stage: detectors
  tags:
    - sodium
  script:
    - bash pid/dummy_test.sh
  allow_failure: true


      #pages:
      #  image: alpine
      #  when: manual
      #  stage: build
      #  script:
      #  - apk update && apk add doxygen  graphviz ttf-ubuntu-font-family
      #  - cd doc && doxygen Doxyfile && mv doxygen_output/html/ ../public/
      #  artifacts:
      #    paths:
      #    - public