You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/.travis.yml

27 lines
550 B

sudo: true
env:
- GO15VENDOREXPERIMENT=1 GLIDE_VERSION="0.9.1"
language: go
go:
- 1.6
install:
- sudo pip install -r expandybird/requirements.txt
script:
- make bootstrap test
branches:
only:
- master
- /^v?(?:[0-9]+\.){2}[0-9]+.*$/
install:
- wget "https://github.com/Masterminds/glide/releases/download/$GLIDE_VERSION/glide-$GLIDE_VERSION-linux-amd64.tar.gz"
- mkdir -p $HOME/bin
- tar -vxz -C $HOME/bin --strip=1 -f glide-$GLIDE_VERSION-linux-amd64.tar.gz
- export PATH="$HOME/bin:$PATH" GLIDE_HOME="$HOME/.glide"