peerplays_migrated/.gitlab-ci.yml
2019-09-05 12:34:59 -03:00

20 lines
No EOL
260 B
YAML

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