From fd08129e304a52a745c74179876ea380932aaf56 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Sat, 25 Aug 2018 11:11:28 +0000 Subject: [PATCH] Remove deploy-dev job; it isn't used --- .circleci/config.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3bde7ad0f..8c7873b60 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,12 +38,6 @@ workflows: - client-lint - client-test - integration-tests - - deploy-dev: - filters: - branches: - ignore: master - requires: - - build jobs: lint: @@ -180,21 +174,3 @@ jobs: docker push "quay.io/${QUAY_ORGANIZATION}/scope:$(./tools/image-tag)" ) - run: test -z "${UI_BUCKET_KEY_ID}" || (cd $SRCDIR && make ui-upload && make ui-pkg-upload) - - deploy-dev: - <<: *defaults - steps: - - checkout - - setup_remote_docker - - attach_workspace: - at: . - # PATH must be set here as circle currently does not support string interpolation - # for environment - # https://discuss.circleci.com/t/bin-sh-mkdir-command-not-found/8710 - - run: export PATH="$PATH:$HOME/.local/bin" - - run: > - test -z "${DEPLOY_BRANCH}" || test -z "${DOCKER_USER}" || ( - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS && - docker tag weaveworks/scope:latest ${DOCKER_ORGANIZATION:-$DOCKER_USER}/scope:${CIRCLE_BRANCH//\//-} && - docker push ${DOCKER_ORGANIZATION:-$DOCKER_USER}/scope:${CIRCLE_BRANCH//\//-} - )