From 657f8a08b763a97e313cc135d0c7637342c219d5 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 5 Nov 2024 19:28:44 +0100 Subject: [PATCH] ci/build: drop mold wrapper for `ninja install` `install` doesn't perform any linking, it just installs what we built in the previous command. Part-of: --- .gitlab-ci/meson/build.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitlab-ci/meson/build.sh b/.gitlab-ci/meson/build.sh index 91dff3cdeec..e242d1a451f 100755 --- a/.gitlab-ci/meson/build.sh +++ b/.gitlab-ci/meson/build.sh @@ -170,10 +170,6 @@ fi uncollapsed_section_switch meson-test "meson: test" LC_ALL=C.UTF-8 meson test --num-processes "${FDO_CI_CONCURRENT:-4}" --print-errorlogs ${MESON_TEST_ARGS} section_switch meson-install "meson: install" -if command -V mold &> /dev/null ; then - mold --run ninja install -else - ninja install -fi +ninja install cd .. section_end meson-install