Skip to content

Commit 518ffe3

Browse files
authored
fix doxygen test on Travis
it seems that doxygen 1.18.13 is not behaving the same as 1.1811 (Travis one). one might need to remove some spaces in the signature as they are different depending on Doxygen's version
1 parent 7946908 commit 518ffe3

File tree

4 files changed

+241
-230
lines changed

4 files changed

+241
-230
lines changed

.ci/travis/code_layout/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
export CORES=2
1717

1818
mkdir build
19-
cd build
19+
pushd build
2020

2121
cmake -DWITH_CORE=OFF -DWITH_APIDOC=ON -DWITH_ASTYLE=ON -DENABLE_TESTS=ON ..
22-
make -j${CORES}
22+
23+
popd

.ci/travis/code_layout/script.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
set -e
1616

1717
pushd build
18+
1819
export CTEST_BUILD_COMMAND="/usr/bin/make -j3 -i -k"
19-
python ${TRAVIS_BUILD_DIR}/.ci/travis/scripts/ctest2travis.py xvfb-run ctest -V --output-on-failure -S ${TRAVIS_BUILD_DIR}/.ci/travis/travis.ctest
20+
python3 ${TRAVIS_BUILD_DIR}/.ci/travis/scripts/ctest2travis.py xvfb-run ctest -V --output-on-failure -S ${TRAVIS_BUILD_DIR}/.ci/travis/travis.ctest
21+
22+
ctest -V -R PyQgsDocCoverage
23+
2024
popd

0 commit comments

Comments
 (0)