Skip to content

Commit 50d17b1

Browse files
Install doxygen 1.8.14 on travis
1 parent 1a4fc92 commit 50d17b1

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.travis.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,27 @@ jobs:
4646
before_cache:
4747

4848
- stage: Linter + Doxygen + non-debug Ubuntu/gcc-5 test
49-
env: NAME="DOXYGEN-CHECK"
49+
env:
50+
NAME: "DOXYGEN-CHECK"
51+
DOXYGEN_VERSION: "1.8.14"
5052
addons:
5153
apt:
5254
sources:
5355
- sourceline: 'deb http://packages.cloud.google.com/apt cloud-sdk-trusty main'
5456
key_url: 'https://packages.cloud.google.com/apt/doc/apt-key.gpg'
5557
packages:
56-
- doxygen
58+
- cmake
5759
- google-cloud-sdk
5860
install:
59-
script: scripts/travis_doxygen.sh
61+
- wget http://ftp.stack.nl/pub/users/dimitri/doxygen-${DOXYGEN_VERSION}.src.tar.gz
62+
- tar xfz doxygen-${DOXYGEN_VERSION}.src.tar.gz
63+
- mkdir -p doxygen-${DOXYGEN_VERSION}/build
64+
- cd doxygen-${DOXYGEN_VERSION}/build; cmake ..; make -j4
65+
- export PATH=$PATH:`pwd`/bin
66+
script:
67+
- echo $PATH
68+
- doxygen --version
69+
- scripts/travis_doxygen.sh
6070
before_cache:
6171
after_success:
6272
# Google Cloud Integration

0 commit comments

Comments
 (0)