Skip to content
Snippets Groups Projects
.gitlab-ci.yml 318 B
Newer Older
lintao@ihep.ac.cn's avatar
lintao@ihep.ac.cn committed

build:
  stage: build
  before_script:
    - source /cvmfs/cepcsw.ihep.ac.cn/prototype/setup.sh
  script:
    - mkdir build
    - cd build
    - cmake ..
    - make


# run tests using the binary built before
test:
  stage: test
  script:
    - cd build
    - ./run gaudirun.py '$EXAMPLESROOT/options/tut_detsim.py'