git-lfs/.travis.yml

41 lines
989 B
YAML
Raw Normal View History

2015-03-24 19:26:31 +00:00
# http://docs.travis-ci.com/user/languages/go/
language: go
go: 1.5
2016-01-14 17:30:56 +00:00
os:
- linux
- osx
matrix:
include:
- env: git-latest
os: linux
addons:
apt:
sources:
- git-core
packages:
- git
- env: git-latest
os: osx
# The 'before_install' phase cannot be used here as we would override the
# default 'before_install' phase. The 'before_script' phase is sufficient
# for the Git install since the Git binary is only used in the tests.
before_script:
- >
brew update;
brew install git;
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"
install: true
script: script/cibuild
notifications:
email: false