mirror of
https://github.com/appleboy/drone-jenkins.git
synced 2026-06-04 18:23:57 +08:00
23 lines
249 B
YAML
23 lines
249 B
YAML
sudo: required
|
|
language: go
|
|
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- tip
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
- ${HOME}/.glide
|
|
|
|
before_install:
|
|
- mkdir -p $GOPATH/bin
|
|
- curl https://glide.sh/get | sh
|
|
|
|
install:
|
|
- make dep_install
|
|
|
|
script:
|
|
- make test
|