blob: 1cc076b3c2d432a140222acbcc4e1c2d5b9fe6ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
language: ruby
matrix:
include:
- os: osx
osx_image: xcode8.0
rvm: system
- os: linux
rvm: 2.0.0
before_install:
- export HOMEBREW_DEVELOPER=1
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
HOMEBREW_REPOSITORY="$(brew --repo)";
sudo rm -rf "$HOMEBREW_REPOSITORY";
ln -s "$PWD" "$HOMEBREW_REPOSITORY";
else
export PATH="$PWD/bin:$PATH";
umask 022;
fi
script:
- brew test-bot
|