Skip to content

Commit

Permalink
Add -g to test CFLAGS
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
dwmw2 committed Aug 14, 2017
1 parent 3eb4ab9 commit 71428d0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .gitlab-ci.yml
Expand Up @@ -12,7 +12,7 @@ CentOS7/GnuTLS:
vpnc-script 'pkgconfig(libpskc)' 'pkgconfig(libpcsclite)'
java-devel-openjdk
- ./autogen.sh
- ./configure --with-java
- ./configure --with-java CFLAGS=-g
- make -j4
# XFAIL the auth-pkcs11 test because GnuTLS 3.3.8 doesn't support pin-value
- make VERBOSE=1 -j4 check
Expand All @@ -38,7 +38,7 @@ CentOS7/OpenSSL:
vpnc-script 'pkgconfig(libpskc)' 'pkgconfig(libpcsclite)'
java-devel-openjdk 'pkgconfig(libp11)'
- ./autogen.sh
- ./configure --without-gnutls --with-openssl --with-java --without-openssl-version-check --enable-dtls-xfail --disable-dsa-tests
- ./configure --without-gnutls --with-openssl --with-java --without-openssl-version-check --enable-dtls-xfail --disable-dsa-tests CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -63,7 +63,7 @@ CentOS6/OpenSSL:
vpnc-script 'pkgconfig(libpskc)' 'pkgconfig(libpcsclite)'
java-devel-openjdk vpnc 'pkgconfig(libp11)' 'pkgconfig(p11-kit-1)'
- ./autogen.sh
- ./configure --with-java --without-openssl-version-check --enable-dtls-xfail
- ./configure --with-java --without-openssl-version-check --enable-dtls-xfail CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -86,7 +86,7 @@ Fedora/GnuTLS:
vpnc-script 'pkgconfig(libpskc)' 'pkgconfig(libpcsclite)'
java-devel-openjdk
- ./autogen.sh
- ./configure --with-java
- ./configure --with-java CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -109,7 +109,7 @@ Fedora/GnuTLS/clang:
vpnc-script 'pkgconfig(libpskc)' 'pkgconfig(libpcsclite)'
java-devel-openjdk clang
- ./autogen.sh
- ./configure --with-java CC=clang
- ./configure --with-java CC=clang CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -133,7 +133,7 @@ Fedora/OpenSSL:
java-devel-openjdk 'pkgconfig(libp11)'
- dnf --enablerepo=updates-testing update -y libp11\* gnutls
- ./autogen.sh
- ./configure --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests
- ./configure --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -157,7 +157,7 @@ Fedora/OpenSSL/clang:
java-devel-openjdk 'pkgconfig(libp11)' clang
- dnf --enablerepo=updates-testing update -y libp11\* gnutls
- ./autogen.sh
- ./configure CC=clang --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests
- ./configure CC=clang --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -178,7 +178,7 @@ MinGW32/GnuTLS:
- mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc
- echo ':DOSWin:M::MZ::/usr/bin/wine:' > /proc/sys/fs/binfmt_misc/register
- ./autogen.sh
- mingw32-configure
- mingw32-configure CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -199,7 +199,7 @@ MinGW32/OpenSSL:
- mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc
- echo ':DOSWin:M::MZ::/usr/bin/wine:' > /proc/sys/fs/binfmt_misc/register
- ./autogen.sh
- mingw32-configure --without-gnutls --with-openssl --without-openssl-version-check
- mingw32-configure --without-gnutls --with-openssl --without-openssl-version-check CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -220,7 +220,7 @@ MinGW64/GnuTLS:
- mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc
- echo ':DOSWin:M::MZ::/usr/bin/wine:' > /proc/sys/fs/binfmt_misc/register
- ./autogen.sh
- mingw64-configure
- mingw64-configure CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand All @@ -241,7 +241,7 @@ MinGW64/OpenSSL:
- mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc
- echo ':DOSWin:M::MZ::/usr/bin/wine:' > /proc/sys/fs/binfmt_misc/register
- ./autogen.sh
- mingw64-configure --without-gnutls --with-openssl --without-openssl-version-check
- mingw64-configure --without-gnutls --with-openssl --without-openssl-version-check CFLAGS=-g
- make -j4
- make VERBOSE=1 -j4 check
tags:
Expand Down

0 comments on commit 71428d0

Please sign in to comment.