From 499ca112f57aa989ec3a1a2ebffa47651b19b18c Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Sun, 2 Dec 2018 22:56:41 +0100 Subject: [PATCH] travis: Add binreloc to the build matrix --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37df95e8a..9a65a5fd6 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,7 +33,7 @@ script: unset CC CXX; sh ./scripts/cross-build-mingw.sh $arg; else - CONFIGURE_FLAGS="--enable-gtk3=$GTK3"; + CONFIGURE_FLAGS="--enable-gtk3=$GTK3 --enable-binreloc=$BINRELOC"; mkdir _build && cd _build && { ../configure $CONFIGURE_FLAGS || { cat config.log; exit 1; } ; } &&