Skip to content

Commit 2c4301d

Browse files
Install doxygen 1.8.14 on travis
1 parent 1a4fc92 commit 2c4301d

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.travis.yml

+15-2
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,23 @@ jobs:
5353
- sourceline: 'deb http://packages.cloud.google.com/apt cloud-sdk-trusty main'
5454
key_url: 'https://packages.cloud.google.com/apt/doc/apt-key.gpg'
5555
packages:
56-
- doxygen
56+
- cmake
5757
- google-cloud-sdk
5858
install:
59-
script: scripts/travis_doxygen.sh
59+
script:
60+
- export DOXYGEN_VERSION=1.8.14
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+
- cd doxygen-$(DOXYGEN_VERSION)
64+
- mkdir build
65+
- cd build
66+
- cmake ..
67+
- make -j4
68+
- cd ../..
69+
- export PATH=$PATH:`pwd`/doxygen-$(DOXYGEN_VERSION)/build/bin
70+
- echo $PATH
71+
- doxygen --version
72+
- scripts/travis_doxygen.sh
6073
before_cache:
6174
after_success:
6275
# Google Cloud Integration

0 commit comments

Comments
 (0)