File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -46,17 +46,27 @@ jobs:
46
46
before_cache :
47
47
48
48
- 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"
50
52
addons :
51
53
apt :
52
54
sources :
53
55
- sourceline : ' deb http://packages.cloud.google.com/apt cloud-sdk-trusty main'
54
56
key_url : ' https://packages.cloud.google.com/apt/doc/apt-key.gpg'
55
57
packages :
56
- - doxygen
58
+ - cmake
57
59
- google-cloud-sdk
58
60
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
60
70
before_cache :
61
71
after_success :
62
72
# Google Cloud Integration
You can’t perform that action at this time.
0 commit comments