Last active
February 7, 2017 13:14
-
-
Save desyncr/21bd04b5ff202280e604edef506aaf3c to your computer and use it in GitHub Desktop.
Simplest way to ad osx?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: c | |
os: | |
- linux | |
- osx | |
compiler: | |
- clang | |
- gcc | |
install: | |
- sudo -H pip install cram | |
before_script: | |
- if [ $TRAVIS_OS_NAME == 'osx' ]; then brew install zsh; else sudo apt-get install zsh; fi | |
- git config --global user.email "[email protected]" | |
- git config --global user.name "Your Name" | |
script: | |
- sudo make install | |
- make test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment