From 9e7bd28a5d523f42ac07444f8b82877e18bcb9e8 Mon Sep 17 00:00:00 2001 From: Timon Wong Date: Mon, 20 May 2019 20:28:43 +0800 Subject: [PATCH] Drop quay since schema v2_2 is not supported yet See: https://github.com/moby/buildkit/issues/409#issuecomment-394757219 --- .circleci/config.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 13b0479..a43fbd9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,14 +53,14 @@ jobs: at: . - run: ln -s .build/linux-amd64/ding2wechat ding2wechat - run: make docker - - run: make docker DOCKER_REPO=quay.io/timonwong + # - run: make docker DOCKER_REPO=quay.io/timonwong - run: docker images - run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD - - run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io + # - run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io - run: make docker-publish - - run: make docker-publish DOCKER_REPO=quay.io/timonwong + # - run: make docker-publish DOCKER_REPO=quay.io/timonwong - run: make docker-manifest - - run: make docker-manifest DOCKER_REPO=quay.io/timonwong + # - run: make docker-manifest DOCKER_REPO=quay.io/timonwong docker_hub_release_tags: executor: golang @@ -79,21 +79,21 @@ jobs: destination: releases - run: ln -s .build/linux-amd64/ding2wechat ding2wechat - run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG - - run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG DOCKER_REPO=quay.io/timonwong + # - run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG DOCKER_REPO=quay.io/timonwong - run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD - - run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io + # - run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io - run: make docker-publish DOCKER_IMAGE_TAG="$CIRCLE_TAG" - - run: make docker-publish DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong + # - run: make docker-publish DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong - run: make docker-manifest DOCKER_IMAGE_TAG="$CIRCLE_TAG" - - run: make docker-manifest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong + # - run: make docker-manifest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong - run: | if [[ "$CIRCLE_TAG" =~ ^v[0-9]+(\.[0-9]+){2}$ ]]; then make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" - make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong + # make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong make docker-publish DOCKER_IMAGE_TAG="latest" - make docker-publish DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong + # make docker-publish DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong make docker-manifest DOCKER_IMAGE_TAG="latest" - make docker-manifest DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong + # make docker-manifest DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong fi workflows: