From 2024a8a1d3eeaec66e540ce298b1e93e81b1f351 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Thu, 16 May 2019 23:54:16 +0200 Subject: gitlab-ci: --enable-option-checking=fatal Signed-off-by: Toni Uhlig --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b29b77..2e6b0f9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,7 +16,7 @@ before_script: build: script: - autoreconf -fi - - ./configure --prefix=/ + - ./configure --enable-option-checking=fatal --prefix=/ - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy)" V=s stage: build artifacts: @@ -47,7 +47,7 @@ build-archlinux: build-mingw: script: - autoreconf -fi - - ./configure --prefix=/ --host=i686-w64-mingw32 + - ./configure --enable-option-checking=fatal --prefix=/ --host=i686-w64-mingw32 - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy)" V=s stage: build artifacts: @@ -59,7 +59,7 @@ build-mingw: build-clang: script: - autoreconf -fi - - 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 stage: build artifacts: @@ -79,7 +79,7 @@ build-android: - test -d 'android-ndk-r19' || unzip -q 'android-ndk-r19-linux-x86_64.zip' - cd .. - autoreconf -fi - - 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 stage: build artifacts: -- cgit v1.2.3