1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
language: go
go:
- "1.12.x"
- "1.13.x"
- "1.14.x"
- "tip"
os:
- linux
- osx
- windows
sudo: false
branches:
only:
- master
- develop
services:
# github.com/revel/revel/cache
- memcache
- redis-server
before_install:
# TRAVIS_OS_NAME - linux and osx
- echo $TRAVIS_OS_NAME
- echo $PATH
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update && brew install memcached redis && brew services start redis && brew services start memcached
fi
- |
if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
redis-server --daemonize yes
redis-cli info
else
# redis-server.exe
# redis-cli.exe info
echo $PATH
fi
install:
# Setting environments variables
- export PATH=$PATH:$HOME/gopath/bin
- export REVEL_BRANCH="develop"
- 'if [[ "$TRAVIS_BRANCH" == "master" ]]; then export REVEL_BRANCH="master"; fi'
- 'echo "Travis branch: $TRAVIS_BRANCH, Revel dependency branch: $REVEL_BRANCH"'
- git clone -b $REVEL_BRANCH git://github.com/revel/modules ../modules/
- git clone -b $REVEL_BRANCH git://github.com/revel/cmd ../cmd/
- git clone -b $REVEL_BRANCH git://github.com/revel/config ../config/
- git clone -b $REVEL_BRANCH git://github.com/revel/cron ../cron/
- git clone -b $REVEL_BRANCH git://github.com/revel/examples ../examples/
- go get -t -v github.com/revel/revel/...
script:
- |
if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
go test -v github.com/revel/revel/...
else
go test -v github.com/revel/revel/.
fi
matrix:
allow_failures:
- go: tip
- os: windows
|