Browse Source

ci: remove docker-linux-amd64-dry-run

pull/9719/head
Antoine GIRARD 5 years ago
parent
commit
0715f65b11
  1. 56
      .drone.yml

56
.drone.yml

@ -594,80 +594,80 @@ steps:
--- ---
kind: pipeline kind: pipeline
name: docker-linux-amd64-release name: docker-linux-dry-run
platform: platform:
os: linux os: linux
arch: amd64 arch: arm64
workspace: workspace:
base: /go base: /go
path: src/code.gitea.io/gitea path: src/code.gitea.io/gitea
depends_on: depends_on:
- testing - compliance
trigger: trigger:
ref: ref:
- refs/heads/master - "refs/pull/**"
- "refs/tags/**"
steps: steps:
- name: fetch-tags - name: dryrun
pull: default
image: docker:git
commands:
- git fetch --tags --force
- name: publish
pull: always pull: always
image: plugins/docker:linux-amd64 image: plugins/docker:linux-arm64
settings: settings:
auto_tag: true dry_run: true
auto_tag_suffix: linux-amd64
repo: gitea/gitea repo: gitea/gitea
tags: linux-arm64
build_args: build_args:
- GOPROXY=off - GOPROXY=off
password:
from_secret: docker_password
username:
from_secret: docker_username
when: when:
event: event:
exclude:
- pull_request - pull_request
--- ---
kind: pipeline kind: pipeline
name: docker-linux-arm64-dry-run name: docker-linux-amd64-release
platform: platform:
os: linux os: linux
arch: arm64 arch: amd64
workspace: workspace:
base: /go base: /go
path: src/code.gitea.io/gitea path: src/code.gitea.io/gitea
depends_on: depends_on:
- compliance - testing
trigger: trigger:
ref: ref:
- "refs/pull/**" - refs/heads/master
- "refs/tags/**"
steps: steps:
- name: dryrun - name: fetch-tags
pull: default
image: docker:git
commands:
- git fetch --tags --force
- name: publish
pull: always pull: always
image: plugins/docker:linux-arm64 image: plugins/docker:linux-amd64
settings: settings:
dry_run: true auto_tag: true
auto_tag_suffix: linux-amd64
repo: gitea/gitea repo: gitea/gitea
tags: linux-arm64
build_args: build_args:
- GOPROXY=off - GOPROXY=off
password:
from_secret: docker_password
username:
from_secret: docker_username
when: when:
event: event:
exclude:
- pull_request - pull_request
--- ---

Loading…
Cancel
Save