blob: 29225d7afe561a13fca1a0e73d0a520fc909dc9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
sudo: false
language: go
go:
- 1.3
- tip
notifications:
email: false
services:
- redis-server
install:
- make get-deps
# Move to the gopkg location that rather than the default clone location
# otherwise Go 1.4+ complains about incorrect import paths.
- export GOPKG_DIR=$GOPATH/src/gopkg.in/throttled
- mkdir -p $GOPKG_DIR
- mv $TRAVIS_BUILD_DIR $GOPKG_DIR/throttled.v2
- cd $GOPKG_DIR/throttled.v2
script: make
|