From 0715f65b11c37869359aaaa5d22901da512e8184 Mon Sep 17 00:00:00 2001 From: Antoine GIRARD Date: Mon, 13 Jan 2020 01:26:31 +0100 Subject: [PATCH] ci: remove docker-linux-amd64-dry-run --- .drone.yml | 56 +++++++++++++++++++++++++++--------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.drone.yml b/.drone.yml index 04c75891a22..b4a7b65c220 100644 --- a/.drone.yml +++ b/.drone.yml @@ -594,80 +594,80 @@ steps: --- kind: pipeline -name: docker-linux-amd64-release +name: docker-linux-dry-run platform: os: linux - arch: amd64 + arch: arm64 workspace: base: /go path: src/code.gitea.io/gitea depends_on: - - testing + - compliance trigger: ref: - - refs/heads/master - - "refs/tags/**" + - "refs/pull/**" steps: - - name: fetch-tags - pull: default - image: docker:git - commands: - - git fetch --tags --force - - - name: publish + - name: dryrun pull: always - image: plugins/docker:linux-amd64 + image: plugins/docker:linux-arm64 settings: - auto_tag: true - auto_tag_suffix: linux-amd64 + dry_run: true repo: gitea/gitea + tags: linux-arm64 build_args: - GOPROXY=off - password: - from_secret: docker_password - username: - from_secret: docker_username when: event: - exclude: - pull_request --- kind: pipeline -name: docker-linux-arm64-dry-run +name: docker-linux-amd64-release platform: os: linux - arch: arm64 + arch: amd64 workspace: base: /go path: src/code.gitea.io/gitea depends_on: - - compliance + - testing trigger: ref: - - "refs/pull/**" + - refs/heads/master + - "refs/tags/**" steps: - - name: dryrun + - name: fetch-tags + pull: default + image: docker:git + commands: + - git fetch --tags --force + + - name: publish pull: always - image: plugins/docker:linux-arm64 + image: plugins/docker:linux-amd64 settings: - dry_run: true + auto_tag: true + auto_tag_suffix: linux-amd64 repo: gitea/gitea - tags: linux-arm64 build_args: - GOPROXY=off + password: + from_secret: docker_password + username: + from_secret: docker_username when: event: + exclude: - pull_request ---