Page MenuHomeHEPForge

.gitlab-ci.yml
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

.gitlab-ci.yml

stages:
- compile
- test
image: gitlab-registry.cern.ch/lforthom/custom_ci_worker:cc7
compile:
stage: compile
before_script:
#- yum install -y -q gsl gsl-devel libgfortran gcc-gfortran
- mkdir build
- cd build
script:
- cmake ..
- make -j 4
artifacts:
paths:
- build/
# define all the tests
test_integrator:
stage: test
dependencies:
- compile
before_script:
- cd build
script:
- make test_integrator
- test/test_integrator vegas
- test/test_integrator miser
when: on_success
allow_failure: false
test_cross_sections:
stage: test
dependencies:
- compile
before_script:
- cd build
script:
- make test_physics_processes
- test/test_physics_processes vegas
- test/test_physics_processes miser
when: on_success
allow_failure: true
test_function_parser:
stage: test
dependencies:
- compile
before_script:
- cd build
script:
- make test_function_parser test_function_parser_rootcomp
- test/test_function_parser
- test/test_function_parser_rootcomp
when: on_success
allow_failure: false

File Metadata

Mime Type
text/plain
Expires
Tue, Sep 30, 5:58 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6511505
Default Alt Text
.gitlab-ci.yml (1 KB)

Event Timeline