Skip to content

Commit 13bc67b

Browse files
author
Albrecht Schlosser
committedAug 2, 2018
Update GitHub (travis) CI configuration.
Don't create documentation when building on macOS ("osx").
1 parent 53d0efb commit 13bc67b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
 

‎.travis.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
os:
2-
- linux
3-
- osx
2+
- linux
3+
- osx
44

55
language:
6-
- c++
7-
- objective-c
6+
- c++
7+
- objective-c
88

99
before_install:
10-
- echo "os = $TRAVIS_OS_NAME"
11-
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update -q && sudo apt-get install -y doxygen libxinerama-dev libxcursor-dev libasound2-dev; fi
12-
- if [ $TRAVIS_OS_NAME == osx ]; then brew install doxygen; fi
10+
- echo "os = $TRAVIS_OS_NAME"
11+
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update -q && sudo apt-get install -y doxygen libxinerama-dev libxcursor-dev libasound2-dev; fi
12+
- if [ $TRAVIS_OS_NAME == osx ]; then brew install doxygen; fi
1313

1414
script:
15-
- echo "Building for OS '$TRAVIS_OS_NAME'"
16-
- make clean && make -j3
17-
- doxygen --version
18-
- (cd documentation; make html)
15+
- echo "Building for OS '$TRAVIS_OS_NAME'"
16+
- make clean && make -j3
17+
- doxygen --version
18+
- if [ $TRAVIS_OS_NAME == linux ]; then cd documentation; make html; cd -; fi

0 commit comments

Comments
 (0)
Please sign in to comment.