travis: run make clean before second compile

otherwise object files will not be rebuilt with the new configure options.
this will prevent cases like db4bd162a3
where it turned out there was a build error with --enable-debug since several
git revisions.
This commit is contained in:
rofl0r 2020-08-11 15:49:18 +01:00
parent c2d4114427
commit d9953d795d

View File

@ -11,6 +11,7 @@ script:
- ./configure - ./configure
- make - make
- make test - make test
- make clean
- ./configure --enable-debug --enable-transparent --enable-reverse - ./configure --enable-debug --enable-transparent --enable-reverse
- make - make
- make test - make test