8a251023b2
distcheck chokes on man5/8 files still in the file tree, while the input files (.txt) are not. these are generated by the configure script and it would require quite some effort to get this test working. as it is non-essential, we simply disable it.
19 lines
310 B
YAML
19 lines
310 B
YAML
language: C
|
|
dist: trusty
|
|
sudo: true
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install --assume-yes asciidoc valgrind
|
|
|
|
script:
|
|
- ./autogen.sh
|
|
- ./configure
|
|
- make
|
|
- make test
|
|
- make clean
|
|
- ./configure --enable-debug --enable-transparent --enable-reverse
|
|
- make
|
|
- make test
|
|
- make valgrind-test
|