diff options
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 20c9c90..3d19058 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,18 +11,18 @@ script: - mkdir -p ./deploy # default gcc build - autoreconf -fi -- ./configure --prefix=/ +- ./configure --enable-option-checking=fatal --prefix=/ - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy)" V=s - make clean # debian build - dpkg-buildpackage -b -us -uc - make clean # mingw-w64 build -- CC=i686-w64-mingw32-gcc ./configure --prefix=/ --host=i686-w64-mingw32 +- CC=i686-w64-mingw32-gcc ./configure --enable-option-checking=fatal --prefix=/ --host=i686-w64-mingw32 - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy)" V=s - make clean # clang build -- CC=clang ./configure --prefix=/ +- CC=clang ./configure --enable-option-checking=fatal --prefix=/ - make install CFLAGS='-Werror -Wno-error=for-loop-analysis' DESTDIR="$(realpath ./deploy)" V=s - make clean # android build @@ -30,7 +30,7 @@ script: - test -r 'android-ndk-r19-linux-x86_64.zip' || wget --progress=dot:mega 'https://dl.google.com/android/repository/android-ndk-r19-linux-x86_64.zip' - test -d 'android-ndk-r19' || unzip -q 'android-ndk-r19-linux-x86_64.zip' - cd .. -- CC=aarch64-linux-android28-clang PATH="${PATH}:$(realpath ./vendor/android-ndk-r19/toolchains/llvm/prebuilt/linux-x86_64/bin)" ./configure --host=aarch64-linux-android +- CC=aarch64-linux-android28-clang PATH="${PATH}:$(realpath ./vendor/android-ndk-r19/toolchains/llvm/prebuilt/linux-x86_64/bin)" ./configure --enable-option-checking=fatal --host=aarch64-linux-android - PATH="${PATH}:$(realpath ./vendor/android-ndk-r19/toolchains/llvm/prebuilt/linux-x86_64/bin)" make install CFLAGS='-Werror -Wno-error=for-loop-analysis' DESTDIR="$(realpath ./deploy)" V=s # archlinux build # see: https://wiki.archlinux.org/index.php/Install_from_existing_Linux#Method_A:_Using_the_bootstrap_image_(recommended) @@ -58,6 +58,6 @@ addons: project: name: lnslbrty/ptunnel-ng notification_email: matzeton@googlemail.com - build_command_prepend: autoreconf -i && ./configure + build_command_prepend: autoreconf -i && ./configure --enable-option-checking=fatal build_command: make branch_pattern: coverity_scan |