Commit 0034f4b3 authored by Mccaskey, Alex's avatar Mccaskey, Alex
Browse files

adding gitlab runner

parent d4fb68d9
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+18 −0
Original line number Diff line number Diff line
image: docker:stable

stages:
  - build
  - push

docker build:
  stage: build
  script:
  - cd docker/dev && docker build -t xacc/qcor-dev-ide . --no-cache

docker push:
  stage: push
  only:
  - master
  script:
  - echo "$REGISTRY_PASSWORD" | docker login -u xacc --password-stdin
  - docker push xacc/qcor-dev-ide
 No newline at end of file