1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-05 10:20:36 +02:00
woodpecker/.drone.yml

31 lines
558 B
YAML
Raw Normal View History

2014-09-10 07:32:10 +03:00
image: go1.3
2014-06-12 22:51:55 +03:00
git:
path: github.com/drone/drone
env:
- GOROOT=/usr/local/go
- PATH=$PATH:$GOROOT/bin:$GOPATH/bin
2014-02-07 13:10:01 +03:00
script:
2015-04-26 01:46:02 +02:00
- go get -u github.com/jteeuwen/go-bindata/...
- make bindata deps
- make build
2014-02-07 13:10:01 +03:00
- make test
2014-02-07 13:10:01 +03:00
notify:
2014-10-15 07:53:39 +03:00
email:
recipients:
- brad@drone.io
# new .drone.yml syntax
clone:
path: github.com/drone/drone
build:
image: golang:1.4.2
commands:
- export GOPATH=/drone
- export PATH=$PATH:$GOPATH/bin
- go get -u github.com/jteeuwen/go-bindata/...
- make bindata deps
- make build
- make test