2018-06-20 12:31:51 +10:00
|
|
|
# Based on the GitLab example CI configuration
|
|
|
|
|
|
|
|
# use the official gcc image, based on debian
|
|
|
|
image: gcc
|
|
|
|
|
2018-06-20 12:45:39 +10:00
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
2018-06-20 12:31:51 +10:00
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
before_script:
|
|
|
|
- apt update
|
2018-06-20 12:41:47 +10:00
|
|
|
- apt -y install cmake ninja-build python3 ragel
|
2018-06-20 12:31:51 +10:00
|
|
|
script:
|
2018-06-20 13:04:55 +10:00
|
|
|
- mkdir build && cd build
|
2018-06-20 13:23:14 +10:00
|
|
|
- cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DLTO=ON -DTESTS=ON
|
2018-06-20 13:04:55 +10:00
|
|
|
- ninja
|
|
|
|
artifacts:
|
|
|
|
untracked: true
|
2018-07-19 12:35:37 +10:00
|
|
|
paths:
|
|
|
|
- test
|
2018-06-20 12:31:51 +10:00
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
2018-06-20 13:04:55 +10:00
|
|
|
before_script:
|
|
|
|
- apt update
|
|
|
|
- apt -y install cmake python3
|
2018-06-20 12:31:51 +10:00
|
|
|
script:
|
2018-06-20 13:04:55 +10:00
|
|
|
- cd build
|
2018-06-20 12:31:51 +10:00
|
|
|
- ctest -vvv
|
2018-07-18 16:44:14 +10:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- Testing/
|