Add Travis CI configuration.
Closes Homebrew/homebrew#43976. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
e39cd2e9b2
commit
49241473ec
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
!/.gitignore
|
!/.gitignore
|
||||||
|
!/.travis.yml
|
||||||
!/.yardopts
|
!/.yardopts
|
||||||
!/Library/
|
!/Library/
|
||||||
!/CODEOFCONDUCT.md
|
!/CODEOFCONDUCT.md
|
||||||
|
|||||||
23
.travis.yml
Normal file
23
.travis.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Force OS X.
|
||||||
|
language: objective-c
|
||||||
|
os: osx
|
||||||
|
env: OSX=10.10
|
||||||
|
osx_image: xcode7
|
||||||
|
rvm:
|
||||||
|
- system
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- env: OSX=10.9
|
||||||
|
osx_image: beta-xcode6.2
|
||||||
|
rvm: system
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- sudo rsync -az "$TRAVIS_BUILD_DIR/" /usr/local/
|
||||||
|
- export TRAVIS_BUILD_DIR="/usr/local"
|
||||||
|
- cd /usr/local
|
||||||
|
- if [ -f ".git/shallow" ]; then git fetch --unshallow; fi
|
||||||
|
- git reset --hard $TRAVIS_COMMIT
|
||||||
|
- git clean -qxdff
|
||||||
|
|
||||||
|
script:
|
||||||
|
- brew test-bot
|
||||||
Loading…
x
Reference in New Issue
Block a user