From f84578e308ca5824315128198a34c0a1d265724b Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 1 Apr 2025 15:10:11 +0200 Subject: [PATCH] ci/build: drop LTO from fedora build It's been broken for a few months by now and nobody has been interested in fixing it, so let's drop LTO so that we get the rest of the benefits from having that build at all. Part-of: --- .gitlab-ci/meson/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/meson/build.sh b/.gitlab-ci/meson/build.sh index 1a93fd8f6a2..f4d4e02053f 100755 --- a/.gitlab-ci/meson/build.sh +++ b/.gitlab-ci/meson/build.sh @@ -121,7 +121,7 @@ case $CI_PIPELINE_SOURCE in LTO=false # enable one by one for now elif [ "$CI_JOB_NAME" == "fedora-release" ]; then - LTO=true + LTO=false else LTO=false fi