peerplays_migrated/.gitlab-ci.yml
Roshan Syed 5b2f6f669a Support/gitlab (#123)
* Updated gitlab process
2019-10-02 13:18:37 +03:00

28 lines
No EOL
397 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
tags:
- builder