From 844a5d0697b2eee44e5bb0cc3419bd2df016074a Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Thu, 5 Oct 2017 15:28:15 +0200 Subject: .gitlab-ci.yml: enable fat builds on x86* Signed-off-by: Nikos Mavrogiannopoulos --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a30d31f3..7c30579a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ build/x86-64: script: - yum install -y gmp-devel - ./.bootstrap && - ./configure --disable-documentation && make -j4 && + ./configure --enable-fat --disable-documentation && make -j4 && make check -j4 tags: - shared @@ -22,7 +22,7 @@ build/x86: script: - yum install -y gmp-devel.i686 - ./.bootstrap && - PKG_CONFIG_PATH="/usr/lib/pkgconfig/" CFLAGS="-O2 -g -m32" LDFLAGS="-m32" ./configure --build=i686-redhat-linux --disable-documentation && make -j4 && + PKG_CONFIG_PATH="/usr/lib/pkgconfig/" CFLAGS="-O2 -g -m32" LDFLAGS="-m32" ./configure --build=i686-redhat-linux --enable-fat --disable-documentation && make -j4 && make check -j4 tags: - shared -- cgit v1.2.1