Skip to content
Snippets Groups Projects
Forked from FairCoin.Co / faircoind
64 commits behind the upstream repository.
.gitlab-ci.yml 446 B
stages:
  - build
  - restart

build-faircoind:
  stage: build
  tags:
    - FairCoin.Co
  only:
    refs:
      - master
    variables:
      - $CMD =~ /build/
  before_script:
    - mkdir -p ~/.faircoin2
  script:
    - docker-compose build

restart-faircoind:
  stage: restart
  tags:
    - FairCoin.Co
  only:
    refs:
      - master
    variables:
      - $CMD =~ /build|restart/
  script:
    - docker-compose down
    - docker-compose up