woodpecker-docker-buildx/.drone.yml

24 lines
601 B
YAML
Raw Normal View History

workspace:
base: /go
2016-10-27 21:42:45 +00:00
path: src/github.com/drone-plugins/drone-docker
2016-05-11 08:43:44 +00:00
pipeline:
2016-05-03 23:17:16 +00:00
test:
image: golang:1.6
2016-05-03 23:17:16 +00:00
environment:
- CGO_ENABLED=0
commands:
# Disabled: main.go:99: cli.StringSlice composite literal uses unkeyed fields
# - go vet
2016-05-03 23:17:16 +00:00
- go test -cover -coverprofile=coverage.out
2016-07-22 23:11:18 +00:00
- go build -ldflags "-s -w -X main.build=$DRONE_BUILD_NUMBER" -a -tags netgo
2016-12-29 16:20:57 +00:00
publish:
2016-11-01 16:53:25 +00:00
image: plugins/docker
2016-05-03 23:17:16 +00:00
repo: plugins/docker
2017-05-02 15:20:45 +00:00
tags: [ "latest", "17", "17.04" ]
2017-05-15 09:33:44 +00:00
secrets: [ docker_username, docker_password ]
2015-10-28 01:29:46 +00:00
when:
branch: master
event: push