You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
766 B
YAML
37 lines
766 B
YAML
# NOTE: Refer drone Go example http://readme.drone.io/0.5/usage/golang-example/
|
|
workspace:
|
|
base: /go
|
|
path: src/github.com/josebarn/drone-with-go
|
|
|
|
pipeline:
|
|
build:
|
|
image: ${IMAGE}
|
|
commands:
|
|
- go get ./...
|
|
- go build
|
|
debug: true
|
|
|
|
unit-test:
|
|
image: ${IMAGE}
|
|
commands:
|
|
- go test ./api
|
|
|
|
run-tests-in-compose:
|
|
image: michalpodeszwa/docker-compose:latest
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
commands:
|
|
- ./script/drone-run-tests.sh api-tests
|
|
|
|
publish:
|
|
image: plugins/docker
|
|
repo: josebarn/hello-world
|
|
tags: [ 1.0.0, 1.0, latest ]
|
|
dockerfile: ./docker/Dockerfile
|
|
secrets: [ DOCKER_USERNAME, DOCKER_PASSWORD ]
|
|
# debug: true
|
|
|
|
matrix:
|
|
IMAGE:
|
|
- golang:latest
|