diff options
author | David du Colombier <0intro@gmail.com> | 2017-09-01 21:23:52 +0200 |
---|---|---|
committer | David du Colombier <0intro@gmail.com> | 2017-09-01 21:23:52 +0200 |
commit | 2f9bf88b364fe9311005da39fdbd0692ddd9998e (patch) | |
tree | ac6e90b6f150ad76fcf89de516e48d3545b2b3c6 | |
parent | 46ba383a330e1b303348caf42648a61cdebbb362 (diff) | |
download | plan9port-2f9bf88b364fe9311005da39fdbd0692ddd9998e.tar.gz plan9port-2f9bf88b364fe9311005da39fdbd0692ddd9998e.tar.bz2 plan9port-2f9bf88b364fe9311005da39fdbd0692ddd9998e.zip |
.travis.yml: build on osx
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 3ff06ca7..0210b9aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,9 @@ language: c +os: + - linux + - osx + env: global: # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created @@ -18,5 +22,9 @@ addons: build_command: "./INSTALL" branch_pattern: master +before_script: + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew cask install Caskroom/cask/osxfuse; fi + script: - ./INSTALL |