blockbook/.gitlab-ci.yml

28 lines
416 B
YAML
Raw Normal View History

2018-10-15 06:58:40 -06:00
stages:
- build
- test
build:
2018-10-15 06:58:40 -06:00
stage: build
2018-10-16 04:55:57 -06:00
only:
- master
2018-10-15 06:58:40 -06:00
tags:
- blockbook
script: make build
unit-test:
2018-10-15 06:58:40 -06:00
stage: test
2018-10-16 04:55:57 -06:00
only:
- master
2018-10-15 06:58:40 -06:00
tags:
- blockbook
script: make test
integration-test:
2018-10-15 06:58:40 -06:00
stage: test
2018-10-16 04:55:57 -06:00
only:
- schedules
2018-10-15 06:58:40 -06:00
tags:
- blockbook
script: make test-integration ARGS="-run='TestIntegration/(bcash|bgold|bitcoin|dash|dogecoin|litecoin|vertcoin|zcash)=main/'"