mirror of
https://github.com/thegeeklab/wp-docker-buildx.git
synced 2024-11-12 16:20:41 +00:00
29 lines
530 B
YAML
29 lines
530 B
YAML
workspace:
|
|
base: /go
|
|
|
|
script:
|
|
test:
|
|
image: golang:1.6
|
|
environment:
|
|
- CGO_ENABLED=0
|
|
commands:
|
|
- go test -cover -coverprofile=coverage.out
|
|
- go build -ldflags "-s -w -X main.build=$DRONE_BUILD_NUMBER"
|
|
docker:
|
|
storage_driver: overlay
|
|
repo: plugins/docker
|
|
tag: latest
|
|
when:
|
|
branch: master
|
|
event: push
|
|
|
|
plugin:
|
|
name: Docker
|
|
desc: Build and publish images to a Docker registry
|
|
type: publish
|
|
image: plugins/docker
|
|
labels:
|
|
- docker
|
|
- image
|
|
- container
|