peerplays_migrated/.gitlab-ci.yml
2019-09-05 15:50:56 -03:00

24 lines
No EOL
334 B
YAML

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