Fix duplicated step names

This commit is contained in:
Thomas Boerger 2019-01-21 01:04:03 +01:00
parent c0ee701c7e
commit c935d6c226
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B
3 changed files with 18 additions and 18 deletions

View File

@ -43,7 +43,7 @@ local PipelineBuild(os="linux", arch="amd64") = {
}, },
steps: [ steps: [
{ {
name: "build", name: "build-push",
image: "golang:1.11", image: "golang:1.11",
pull: "always", pull: "always",
environment: { environment: {
@ -58,7 +58,7 @@ local PipelineBuild(os="linux", arch="amd64") = {
}, },
}, },
{ {
name: "build", name: "build-tag",
image: "golang:1.11", image: "golang:1.11",
pull: "always", pull: "always",
environment: { environment: {

View File

@ -1,9 +1,9 @@
--- ---
kind: pipeline kind: pipeline
name: linux-amd64 name: windows-amd64
platform: platform:
os: linux os: windows
arch: amd64 arch: amd64
steps: steps:
@ -11,7 +11,7 @@ steps:
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
- "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/amd64/drone-s3-sync" - "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/windows/amd64/drone-s3-sync"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on GO111MODULE: on
@ -24,7 +24,7 @@ steps:
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
- "go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/amd64/drone-s3-sync" - "go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/windows/amd64/drone-s3-sync"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on GO111MODULE: on
@ -34,14 +34,14 @@ steps:
- name: dryrun - name: dryrun
pull: always pull: always
image: plugins/docker:linux-amd64 image: plugins/docker:windows-amd64
settings: settings:
dockerfile: docker/Dockerfile.linux.amd64 dockerfile: docker/Dockerfile.windows.amd64
dry_run: true dry_run: true
password: password:
from_secret: docker_password from_secret: docker_password
repo: plugins/s3-sync repo: plugins/s3-sync
tags: linux-amd64 tags: windows-amd64
username: username:
from_secret: docker_username from_secret: docker_username
when: when:
@ -50,11 +50,11 @@ steps:
- name: publish - name: publish
pull: always pull: always
image: plugins/docker:linux-amd64 image: plugins/docker:windows-amd64
settings: settings:
auto_tag: true auto_tag: true
auto_tag_suffix: linux-amd64 auto_tag_suffix: windows-amd64
dockerfile: docker/Dockerfile.linux.amd64 dockerfile: docker/Dockerfile.windows.amd64
password: password:
from_secret: docker_password from_secret: docker_password
repo: plugins/s3-sync repo: plugins/s3-sync

View File

@ -36,7 +36,7 @@ platform:
arch: amd64 arch: amd64
steps: steps:
- name: build - name: build-push
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
@ -49,7 +49,7 @@ steps:
- push - push
- pull_request - pull_request
- name: build - name: build-tag
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
@ -110,7 +110,7 @@ platform:
arch: arm64 arch: arm64
steps: steps:
- name: build - name: build-push
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
@ -123,7 +123,7 @@ steps:
- push - push
- pull_request - pull_request
- name: build - name: build-tag
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
@ -184,7 +184,7 @@ platform:
arch: arm arch: arm
steps: steps:
- name: build - name: build-push
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands:
@ -197,7 +197,7 @@ steps:
- push - push
- pull_request - pull_request
- name: build - name: build-tag
pull: always pull: always
image: golang:1.11 image: golang:1.11
commands: commands: