Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit d869a98

Browse files
committed
Introduce OS X CI testing
See https://docs.travis-ci.com/user/osx-ci-environment/ for more information.
1 parent 9d5148a commit d869a98

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

.travis.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@ rvm:
44
- 2.1.8
55
- 1.9.3
66
- rbx
7+
matrix:
8+
include:
9+
- rvm: system
10+
os: osx
11+
osx_image: xcode7.3
12+
- rvm: system
13+
os: osx
14+
osx_image: xcode6.4
15+
- rvm: system
16+
os: osx
17+
osx_image: beta-xcode6.2
718
bundler_args: --jobs=1 --retry=3
19+
before_install:
20+
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get update; fi
21+
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install git-svn; fi
22+
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then gem update --system; fi
23+
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then gem update bundler; fi
24+
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then sudo gem install bundler ; fi
825
notifications:
926
recipients:
1027
- cowboyd@thefrontside.net
1128
- bordjukov@gmail.com
12-
before_install:
13-
- sudo apt-get update
14-
- sudo apt-get install git-svn
15-
- gem update bundler

0 commit comments

Comments
 (0)