ecl/.gitlab-ci.yml
2017-01-11 18:30:33 +00:00

18 lines
No EOL
412 B
YAML

build:
stage: build
# instead of calling g++ directly you can also use some build toolkit like make
# install the necessary build tools when needed
# before_script:
# - apt update && apt -y install make autoconf
script:
- ./configure
- make
- make install
# run tests using the binary built before
test:
stage: test
script:
- ./configure
- cd ./build/tests/
- make