mirror of
https://github.com/thegeeklab/drone-s3-sync.git
synced 2024-11-05 02:40:40 +00:00
71 lines
1.3 KiB
YAML
71 lines
1.3 KiB
YAML
---
|
|
kind: pipeline
|
|
name: windows-amd64
|
|
|
|
platform:
|
|
os: windows
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build
|
|
pull: always
|
|
image: golang:1.11
|
|
commands:
|
|
- "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/windows/amd64/drone-s3-sync"
|
|
environment:
|
|
CGO_ENABLED: 0
|
|
GO111MODULE: on
|
|
when:
|
|
event:
|
|
- push
|
|
- pull_request
|
|
|
|
- name: build
|
|
pull: always
|
|
image: golang:1.11
|
|
commands:
|
|
- "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:
|
|
CGO_ENABLED: 0
|
|
GO111MODULE: on
|
|
when:
|
|
event:
|
|
- tag
|
|
|
|
- name: dryrun
|
|
pull: always
|
|
image: plugins/docker:windows-amd64
|
|
settings:
|
|
dockerfile: docker/Dockerfile.windows.amd64
|
|
dry_run: true
|
|
password:
|
|
from_secret: docker_password
|
|
repo: plugins/s3-sync
|
|
tags: windows-amd64
|
|
username:
|
|
from_secret: docker_username
|
|
when:
|
|
event:
|
|
- pull_request
|
|
|
|
- name: publish
|
|
pull: always
|
|
image: plugins/docker:windows-amd64
|
|
settings:
|
|
auto_tag: true
|
|
auto_tag_suffix: windows-amd64
|
|
dockerfile: docker/Dockerfile.windows.amd64
|
|
password:
|
|
from_secret: docker_password
|
|
repo: plugins/s3-sync
|
|
username:
|
|
from_secret: docker_username
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|