summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2020-12-27 15:59:46 +0100
committerNiels Möller <nisse@lysator.liu.se>2020-12-27 15:59:46 +0100
commitd56503602134442832e73bc40a657954d3f8db8f (patch)
treeaef4ec8be7371ac9586050a506c080b9695cbcc7 /.gitlab-ci.yml
parent08ac9e1e9337d4a7fb34ddd94f5e9e369d8d148b (diff)
downloadnettle-d56503602134442832e73bc40a657954d3f8db8f.tar.gz
Enable fat build by default.fat-build-by-default
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac52ee38..57bbc04f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,7 @@ build/x86-64:
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
script:
- ./.bootstrap &&
- ./configure --disable-static --enable-fat --disable-documentation && make -j4 &&
+ ./configure --disable-static --disable-documentation && make -j4 &&
make check -j4 &&
make check-fat
tags:
@@ -26,7 +26,7 @@ build/mini-gmp:
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
script:
- ./.bootstrap &&
- ./configure --disable-documentation --enable-mini-gmp && make -j4 &&
+ ./configure --disable-documentation --disable-fat --enable-mini-gmp && make -j4 &&
make check -j4
tags:
- shared
@@ -128,7 +128,7 @@ Debian.cross.x86:
- export CC_FOR_BUILD="gcc"
- export CC="$host-gcc"
- ./.bootstrap &&
- CFLAGS="-O2 -g" ./configure --build=$build --host=$host --enable-fat --disable-documentation && make -j4 &&
+ CFLAGS="-O2 -g" ./configure --build=$build --host=$host --disable-documentation && make -j4 &&
make check -j4
tags:
- shared
@@ -154,7 +154,7 @@ Debian.cross.x86:
- export CC_FOR_BUILD="gcc"
- export CC="$host-gcc"
- ./.bootstrap
- - ./configure --disable-static --enable-fat --disable-documentation --build=$build --host=$host
+ - ./configure --disable-static --disable-documentation --build=$build --host=$host
- make -j$(nproc)
- make -j$(nproc) check
- make -j$(nproc) check-fat