Skip to content
Snippets Groups Projects
Commit 2e90d1cb authored by Jörn Künsemöller's avatar Jörn Künsemöller
Browse files

SW-394: Playing with gitlab CI yaml file

parent 1cadfa83
No related branches found
No related tags found
1 merge request!80SW-830: Resolve SW-394
image: gcc image: centos:7
before_script: before_script:
- apt-get update --yes - yum groupinstall 'Development Tools'
- apt-get install --yes cmake
stages:
- build
- test
build: build:
script: script:
- echo "Building..."
- mkdir -p build/gnucxx11_opt - mkdir -p build/gnucxx11_opt
- cd build/gnucxx11_opt - cd build/gnucxx11_opt
- cmake -DBUILD_PACKAGES=TriggerServices ../.. - cmake -DBUILD_PACKAGES=TriggerServices ../..
- make - make
artifacts:
paths:
- build/
test:
script:
- echo "Testing..."
- ctest
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment