github.com/aychain/blockbook@v0.1.1-0.20181121092459-6d1fc7e07c5b/.gitlab-ci.yml (about)

     1  stages:
     2    - build
     3    - test
     4  
     5  build:
     6    stage: build
     7    only:
     8      - master
     9    tags:
    10      - blockbook
    11    script: make build
    12  
    13  unit-test:
    14    stage: test
    15    only:
    16      - master
    17    tags:
    18      - blockbook
    19    script: make test
    20  
    21  integration-test:
    22    stage: test
    23    only:
    24      - schedules
    25    tags:
    26      - blockbook
    27    script: make test-integration ARGS="-run='TestIntegration/(bcash|bgold|bitcoin|dash|dogecoin|litecoin|vertcoin|zcash)=main/'"