peerplays_migrated/.gitlab-ci.yml
2019-09-05 14:07:45 -03:00

26 lines
No EOL
372 B
YAML

stages:
- build
- test
build:
stage: build
script:
- git submodule update --init --recursive
- cmake .
- make -j$(nproc)
tags:
- builder
test:
stage: test
script:
- ./tests/betting_test
- ./tests/chain_test
cache:
key: $CI_COMMIT_REF_NAME
paths:
- libraries/
- programs/
- test/
tags:
- builder