git-lfs/.travis.yml

13 lines
448 B
YAML
Raw Normal View History

2015-03-24 19:26:31 +00:00
# http://docs.travis-ci.com/user/languages/go/
language: go
2015-09-01 22:50:44 +00:00
go:
- 1.5
install: true
2015-04-08 20:23:52 +00:00
script: script/cibuild
2015-03-24 19:26:31 +00:00
notifications:
email: false
before_install:
- repo=`basename $PWD`; localDir=`dirname $PWD`; cfDir="`dirname $localDir`/github"
- if [[ "$localDir" != "$cfDir" ]]; then mv "$localDir" "$cfDir"; cd ../../github/$repo; export TRAVIS_BUILD_DIR=`dirname $TRAVIS_BUILD_DIR`/$repo; fi
2015-09-17 22:47:00 +00:00
- export GIT_LFS_TEST_DIR="$localDir/git-lfs-tests"