diff --git a/.travis.yml b/.travis.yml index 2ce51ab7e3..9a65a5fd60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,10 @@ dist: trusty compiler: - gcc env: - - GTK3=no - - GTK3=yes + - GTK3=no BINRELOC=no + - GTK3=yes BINRELOC=no + - GTK3=no BINRELOC=yes + - GTK3=yes BINRELOC=yes - GTK3=no MINGW=yes - GTK3=yes MINGW=yes before_install: @@ -31,9 +33,11 @@ script: unset CC CXX; sh ./scripts/cross-build-mingw.sh $arg; else + CONFIGURE_FLAGS="--enable-gtk3=$GTK3 --enable-binreloc=$BINRELOC"; mkdir _build && cd _build && - { ../configure --enable-gtk3=$GTK3 || { cat config.log; exit 1; } ; } && + { ../configure $CONFIGURE_FLAGS || { cat config.log; exit 1; } ; } && make -j2 && - make -j2 check; + make -j2 check && + make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; fi