From a83ab6b95378db057242f535de0beeee4f19d4b8 Mon Sep 17 00:00:00 2001 From: Jeroen van der Heijden Date: Wed, 10 Oct 2018 09:57:36 +0200 Subject: [PATCH] Changed to NDEBUG flag for release --- include/siri/version.h | 2 +- itest/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/siri/version.h b/include/siri/version.h index 2c08fcf8..3967a0fd 100644 --- a/include/siri/version.h +++ b/include/siri/version.h @@ -21,7 +21,7 @@ * This should be an empty string when building a final release. * Examples: "-alpha-0" "-alpha-1", "" */ -#define SIRIDB_VERSION_PRE_RELEASE "-alpha-0" +#define SIRIDB_VERSION_PRE_RELEASE "-alpha-1" #ifndef NDEBUG #define SIRIDB_VERSION_BUILD_RELEASE "+debug" diff --git a/itest/Dockerfile b/itest/Dockerfile index 70ad619a..005b24b1 100644 --- a/itest/Dockerfile +++ b/itest/Dockerfile @@ -12,7 +12,7 @@ COPY ./include/ ./include/ COPY ./Release/ ./Release/ RUN cd ./Release && \ make clean && \ - make + CFLAGS="-Werror -std=gnu89" make FROM python RUN apt-get update && \ -- 2.30.2