-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy path.travis.yml
More file actions
17 lines (15 loc) · 784 Bytes
/
Copy path.travis.yml
File metadata and controls
17 lines (15 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
os:
- linux
- osx
before_install: |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository ppa:schot/gawk -y; fi
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -q; fi
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install gawk; fi
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install rlwrap; fi
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install emacs; fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gawk; fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install rlwrap; fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install emacs; fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install bash; fi
script: make check