File tree 2 files changed +12
-8
lines changed
2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
1
language : c
2
2
3
+ os :
4
+ - linux
5
+ - osx
6
+
3
7
compiler :
4
8
- gcc
5
9
- clang
@@ -13,12 +17,9 @@ addons:
13
17
packages :
14
18
- libogg-dev
15
19
20
+ install :
21
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew bundle; fi
22
+
16
23
script :
17
- - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi
18
- - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./configure ; fi
19
- - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then make -j2 V=1 distcheck ; fi
20
- - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build ; fi
21
- - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then pushd build ; fi
22
- - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. ; fi
23
- - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake --build . ; fi
24
- - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then popd ; fi
24
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh && ./configure && make -j2 V=1 distcheck; fi
25
+ - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build && pushd build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. && cmake --build . && popd; fi
Original file line number Diff line number Diff line change
1
+ brew 'doxygen'
2
+ brew 'libogg'
3
+ brew 'xz'
You can’t perform that action at this time.
0 commit comments