Skip to content

Commit

Permalink
Add Travis CI configuration.
Browse files Browse the repository at this point in the history
Closes Homebrew/legacy-homebrew#43976.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
MikeMcQuaid committed Sep 18, 2015
1 parent e39cd2e commit 4924147
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
!/.gitignore
!/.travis.yml
!/.yardopts
!/Library/
!/CODEOFCONDUCT.md
Expand Down
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4924147

Please sign in to comment.