From f2f5e45345f3bfb1b78d5e2732e8d93263062777 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Mon, 5 Sep 2022 11:06:48 +0200 Subject: [PATCH] ci: Build catchsegv in CI Build crash catcher "catchsegv"[1] in CI. [1]: https://github.com/zatrazz/glibc-tools --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c75f837..078848e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,6 +53,12 @@ test_nut_hwdb: build: stage: build + before_script: + - git clone https://github.com/zatrazz/glibc-tools.git + - cd glibc-tools + - ./configure + - make + - cd .. script: - meson _build -Dintrospection=enabled -Dman=true -Dgtk-doc=true -Didevice=enabled - ninja -C _build @@ -95,6 +101,10 @@ test: stage: test dependencies: - build + before_script: + - cd glibc-tools + - make install + - cd .. script: - meson test -C _build --print-errorlogs --no-stdsplit - .ci/fail_skipped_tests.py _build/meson-logs/testlog.junit.xml