numint/.gitlab-ci.yml
Nicolás A. Ortega ed5dcc94b1
Added CI.
2016-12-01 16:50:15 +01:00

14 lines
250 B
YAML

image: gcc
build:
stage: build
before_script:
- apt update && apt -y install cmake
script:
- cd build/
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make
artifacts:
paths:
- build/numint