summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@redhat.com>2020-01-19 12:13:48 +0100
committerDaiki Ueno <dueno@redhat.com>2020-01-23 07:07:26 +0100
commit0f7baad9cf47e066d882b858f26bb539543dbc6e (patch)
tree6079162d97df6ed1485674a51290ff75f0ccf160
parent978773fccedb11d34e7c0f0fc022aa9d65a9ba3b (diff)
downloadgnutls-0f7baad9cf47e066d882b858f26bb539543dbc6e.tar.gz
.gitlab-ci.yml: export LDFLAGS throughout the FreeBSD build
Otherwise the build process wouldn't be able to find -lgmp. Signed-off-by: Daiki Ueno <dueno@redhat.com>
-rw-r--r--.gitlab-ci.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 26a36ce3dc..cbc9303fa0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,7 +7,7 @@ stages:
# name to allow expiration of old caches.
cache:
- key: "$CI_JOB_NAME-ver13"
+ key: "$CI_JOB_NAME-ver14"
paths:
- cache/
@@ -436,7 +436,8 @@ FreeBSD.x86_64:
script:
- export CC="ccache clang"
- ./bootstrap
- - LIBS="-L/usr/local/lib" ./configure --disable-full-test-suite
+ - export LDFLAGS="-L/usr/local/lib"
+ - ./configure --disable-full-test-suite
--cache-file cache/config.cache --disable-gcc-warnings --disable-guile --disable-doc
- gmake -j$(sysctl hw.ncpu | awk '{print $2}')
- gmake check -j$(sysctl hw.ncpu | awk '{print $2}')