summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-01-21 08:55:06 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-01-21 09:38:58 +0100
commit524febfb1a884ed824134ad4dc7e3636fb424af1 (patch)
treee071cea53f17a3f16ba610b4dbeb5eea3c70e957
parent164e2fdb40506e85029323aeb3d2e8ab0e0c4c46 (diff)
downloadgnutls-524febfb1a884ed824134ad4dc7e3636fb424af1.tar.gz
.gitlab-ci.yml: Added build with ARCFOUR
-rw-r--r--.gitlab-ci.yml32
1 files changed, 20 insertions, 12 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dadc0dac33..9246fe3b70 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,38 +1,46 @@
-Build and Check with valgrind:
+Build and Check - FIPS140-2 (x86-64):
script:
- - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
- --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
+ - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
+ --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- x86-64
- nettle2
except:
- tags
-Build and Check with asan:
+Build and Check - with ARCFOUR:
script:
- - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=address -g
- -O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
- && make -j4 && make check -j4
+ - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
+ --with-arcfour128 --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- - x86-64
- nettle2
except:
- tags
-Build and Check - separate build dir (x86-64):
+Build and Check - separate build dir:
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
--disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
+ - nettle2
+ except:
+ - tags
+Build and Check with valgrind:
+ script:
+ - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
+ --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
+ - cat tests/test-suite.log
+ tags:
- x86-64
- nettle2
except:
- tags
-Build and Check - FIPS140-2 (x86-64):
+Build and Check with asan:
script:
- - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
- --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check -j4
+ - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=address -g
+ -O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
+ && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- x86-64