peerplays_migrated/.gitlab-ci.yml
2019-09-25 10:30:15 -03:00

29 lines
421 B
YAML

stages:
- build
- test
build:
stage: build
script:
- git submodule update --init --recursive
- cmake .
- make -j$(nproc)
artifacts:
untracked: true
paths:
- libraries/
- programs/
- tests/
tags:
- builder
test:
stage: test
dependencies:
- build
script:
- ./tests/betting_test
- ./tests/chain_test
- ./tests/cli_test
tags:
- builder