summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2018-09-15 10:23:44 +0200
committerAkim Demaille <akim.demaille@gmail.com>2018-09-18 13:21:38 +0200
commit2559f4cec53d676640e9f76c883578e88e83ff61 (patch)
treea29803c99a0fe007d96598e1b1d13e81d7f0f1c2 /.travis.yml
parentd4fbda2a94751c4cb2c6397cc7419b179c14e31a (diff)
downloadbison-2559f4cec53d676640e9f76c883578e88e83ff61.tar.gz
CI: install Doxygen
* .travis.yml: here, so that its tests are not skipped. Remove valgrind: it's too expensive on the CI, and asan does the job.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 22e0c342..856c200c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -172,17 +172,17 @@ matrix:
before_install:
- sudo apt-get update -qq
- - sudo apt-get install -qq autoconf automake autopoint flex gettext graphviz help2man m4 texinfo valgrind
+ - sudo apt-get install -qq autoconf automake autopoint doxygen flex gettext graphviz help2man m4 texinfo
- autoconf --version
- automake --version
- autopoint --version
+ - doxygen --version
- flex --version
- gettext --version
- dot -V
- help2man --version
- m4 --version
- makeinfo --version
- - valgrind --version
- eval "${MATRIX_EVAL}"
script:
@@ -191,5 +191,4 @@ script:
- make -j2
- make check VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log
- make maintainer-check-posix VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log
-# - make maintainer-check-valgrind VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log
- make maintainer-check-g++ VERBOSE=1 TESTSUITEFLAGS=-j2 || cat tests/testsuite.log