drone-s3-sync/.drone.yml

148 lines
3.7 KiB
YAML
Raw Normal View History

2016-05-13 08:54:07 +02:00
workspace:
base: /go
2017-08-28 23:31:49 +02:00
path: src/github.com/drone-plugins/drone-s3-sync
2016-05-13 08:54:07 +02:00
pipeline:
test:
image: golang:1.11
pull: true
environment:
- GO111MODULE=on
2016-05-13 08:54:07 +02:00
commands:
- go vet ./...
- go test -cover ./...
2015-10-16 22:09:45 +02:00
2017-08-28 23:31:49 +02:00
build_linux_amd64:
image: golang:1.11
pull: true
2017-08-28 23:31:49 +02:00
group: build
environment:
- GOOS=linux
- GOARCH=amd64
- CGO_ENABLED=0
- GO111MODULE=on
2017-08-28 23:31:49 +02:00
commands:
- |
if test "${DRONE_TAG}" = ""; then
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-s3-sync
else
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-s3-sync
fi
build_linux_i386:
image: golang:1.11
pull: true
group: build
environment:
- GOOS=linux
- GOARCH=386
- CGO_ENABLED=0
- GO111MODULE=on
commands:
- |
if test "${DRONE_TAG}" = ""; then
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/i386/drone-s3-sync
else
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/i386/drone-s3-sync
fi
2017-08-28 23:31:49 +02:00
build_linux_arm64:
image: golang:1.11
pull: true
2017-08-28 23:31:49 +02:00
group: build
environment:
- GOOS=linux
- GOARCH=arm64
- CGO_ENABLED=0
- GO111MODULE=on
2017-08-28 23:31:49 +02:00
commands:
- |
if test "${DRONE_TAG}" = ""; then
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-s3-sync
else
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-s3-sync
fi
2017-08-28 23:31:49 +02:00
build_linux_arm:
image: golang:1.11
pull: true
2017-08-28 23:31:49 +02:00
group: build
environment:
- GOOS=linux
- GOARCH=arm
- CGO_ENABLED=0
- GOARM=7
- GO111MODULE=on
2017-08-28 23:31:49 +02:00
commands:
- |
if test "${DRONE_TAG}" = ""; then
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm/drone-s3-sync
else
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm/drone-s3-sync
fi
2017-08-28 23:31:49 +02:00
publish_linux_amd64:
image: plugins/docker:17.12
pull: true
secrets: [ docker_username, docker_password ]
group: docker
2017-08-28 23:31:49 +02:00
repo: plugins/s3-sync
auto_tag: true
auto_tag_suffix: linux-amd64
dockerfile: Dockerfile
when:
event: [ push, tag ]
publish_linux_i386:
image: plugins/docker:17.12
pull: true
2017-08-28 23:31:49 +02:00
secrets: [ docker_username, docker_password ]
group: docker
repo: plugins/s3-sync
auto_tag: true
auto_tag_suffix: linux-i386
dockerfile: Dockerfile.i386
2017-08-28 23:31:49 +02:00
when:
event: [ push, tag ]
2017-08-28 23:31:49 +02:00
publish_linux_arm64:
image: plugins/docker:17.12
pull: true
2017-08-28 23:31:49 +02:00
secrets: [ docker_username, docker_password ]
group: docker
repo: plugins/s3-sync
auto_tag: true
auto_tag_suffix: linux-arm64
2017-08-28 23:31:49 +02:00
dockerfile: Dockerfile.arm64
when:
event: [ push, tag ]
2015-10-16 22:09:45 +02:00
2017-08-28 23:31:49 +02:00
publish_linux_arm:
image: plugins/docker:17.12
pull: true
2017-08-28 23:31:49 +02:00
secrets: [ docker_username, docker_password ]
group: docker
repo: plugins/s3-sync
auto_tag: true
auto_tag_suffix: linux-arm
2017-08-28 23:31:49 +02:00
dockerfile: Dockerfile.arm
when:
event: [ push, tag ]
2017-08-28 23:31:49 +02:00
manifests:
image: plugins/manifest:1
pull: true
secrets: [ docker_username, docker_password ]
spec: manifest.tmpl
auto_tag: true
ignore_missing: true
when:
event: [ push, tag ]
2017-08-28 23:31:49 +02:00
microbadger:
image: plugins/webhook:1
pull: true
secrets: [ webhook_url ]
when:
status: [ success ]