summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ci/Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/Dockerfile b/ci/Dockerfile
index c2ed141fe..17b6f7b28 100644
--- a/ci/Dockerfile
+++ b/ci/Dockerfile
@@ -49,7 +49,9 @@ RUN ./configure \
--with-acl \
--with-lua \
--enable-silent-rules \
- --enable-python
-RUN make
+ --enable-python \
+ --enable-werror
+
+RUN make -j
CMD make check; rc=$?; cat tests/rpmtests.log; exit $rc