From 63afd265a6021554be814b24d67f20a6d8e2e8ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Ondra=C4=8Dka?= Date: Fri, 7 Feb 2025 09:02:03 +0100 Subject: [PATCH] ci: disable LTO for nightly debian-build-testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Other CI jobs are actually depending on debian-build-testing now and there doesn't seem to be much interested in fixing LTO, so just disable it. Signed-off-by: Pavel Ondračka Acked-by: David Heidelberg Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/12574 Reviewed-by: Eric Engestrom 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 3b2064b91c8..1a93fd8f6a2 100755 --- a/.gitlab-ci/meson/build.sh +++ b/.gitlab-ci/meson/build.sh @@ -120,7 +120,7 @@ case $CI_PIPELINE_SOURCE in # /tmp/ccWlDCPV.s:15250880: Error: operand out of range (0xfffffffffdd4e688 is not between 0xfffffffffe000000 and 0x1fffffc) LTO=false # enable one by one for now - elif [ "$CI_JOB_NAME" == "fedora-release" ] || [ "$CI_JOB_NAME" == "debian-build-testing" ]; then + elif [ "$CI_JOB_NAME" == "fedora-release" ]; then LTO=true else LTO=false