From 2deee5ddb3e1cadb1dc9768230eb2bc2c7372b00 Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Thu, 2 Jun 2022 05:31:14 +0800 Subject: [PATCH] ci/vs2019: Clear CI_COMMIT_MESSAGE and CI_COMMIT_DESCRIPTION for please meson Fixes https://gitlab.freedesktop.org/lygstate/mesa/-/jobs/23444155/raw https://gist.github.com/lygstate/201dd9d2db3d411668f7bbdc17daf74a Signed-off-by: Yonggang Luo Acked-by: Jesse Natalie Part-of: --- .gitlab-ci/windows/mesa_build.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci/windows/mesa_build.ps1 b/.gitlab-ci/windows/mesa_build.ps1 index 46a18666f0d..885069204e2 100644 --- a/.gitlab-ci/windows/mesa_build.ps1 +++ b/.gitlab-ci/windows/mesa_build.ps1 @@ -1,3 +1,8 @@ +# Clear CI_COMMIT_MESSAGE and CI_COMMIT_DESCRIPTION for please meson +# when the commit message is complicated +$env:CI_COMMIT_MESSAGE="" +$env:CI_COMMIT_DESCRIPTION="" + # force the CA cert cache to be rebuilt, in case Meson tries to access anything Write-Host "Refreshing Windows TLS CA cache" (New-Object System.Net.WebClient).DownloadString("https://github.com") >$null