add osx to travis
authorStephen <stephengroat@users.noreply.github.com>
Mon, 27 Nov 2017 19:28:35 +0000 (11:28 -0800)
committerThomas Daede <daede003@umn.edu>
Wed, 23 May 2018 21:24:20 +0000 (14:24 -0700)
.travis.yml
Brewfile [new file with mode: 0644]

index b3dddcd..5398066 100644 (file)
@@ -1,5 +1,9 @@
 language: c
 
+os:
+  - linux
+  - osx
+
 compiler:
   - gcc
   - clang
@@ -13,12 +17,9 @@ addons:
     packages:
     - libogg-dev
 
+install:
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew bundle; fi
+
 script:
-  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi
-  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./configure ; fi
-  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then make -j2 V=1 distcheck ; fi
-  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build ; fi
-  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then pushd build ; fi
-  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. ; fi
-  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake --build . ; fi
-  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then popd ; fi
+  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh && ./configure && make -j2 V=1 distcheck; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build && pushd build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. && cmake --build . && popd; fi
diff --git a/Brewfile b/Brewfile
new file mode 100644 (file)
index 0000000..af81e5b
--- /dev/null
+++ b/Brewfile
@@ -0,0 +1,3 @@
+brew 'doxygen'
+brew 'libogg'
+brew 'xz'