libbsd: Branch 'main'
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Wed Mar 29 07:36:53 UTC 2023
.gitlab-ci.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
New commits:
commit ca3db5e134d3a4467ab6916ba271a8d7de75661e
Author: Guillem Jover <guillem at hadrons.org>
Date: Wed Mar 29 09:35:27 2023 +0200
build: Do not enable ASAN for musl CI pipelines
musl-libc does not currently support ASAN, so enabling it makes
configure fail to detect libmd as it cannot link to it anymore.
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e701dda..9e117f2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,9 @@
.unit-tests:
+ script:
+ - ./autogen && ./configure
+ - make check
+
+.unit-tests-asan:
script:
- ./autogen && ./configure --enable-sanitize
- make check
@@ -25,7 +30,7 @@
bsd-compat-headers linux-headers libmd-dev musl-dev gcovr
unit-tests:debian:
- extends: [.debian, .unit-tests]
+ extends: [.debian, .unit-tests-asan]
coverage:debian:
extends: [.debian, .coverage]
More information about the libbsd
mailing list