33 lines
497 B
YAML
33 lines
497 B
YAML
include:
|
|
- template: Code-Quality.gitlab-ci.yml
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- git submodule sync
|
|
- 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
|