From f63482057b4ff288483bcab52eb7b028622a5a5f Mon Sep 17 00:00:00 2001 From: xiangning Date: Mon, 11 May 2026 02:35:41 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E4=BF=AE=E5=A4=8D=20Jenkinsfile=20ICU=20?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1=E9=97=AE=E9=A2=98=EF=BC=8C=E5=90=AF=E7=94=A8?= =?UTF-8?q?=20GlobalizationInvariant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2944d33..f7f7514 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,7 @@ pipeline { environment { DOTNET_CLI_TELEMETRY_OPTOUT = '1' DOTNET_ROOT = '/var/jenkins_home/.dotnet' + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT = '1' PATH = "${env.DOTNET_ROOT}:${env.PATH}" } @@ -15,8 +16,6 @@ pipeline { echo "=== Installing .NET 10 SDK ===" mkdir -p $DOTNET_ROOT curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 10.0 --install-dir $DOTNET_ROOT - else - echo ".NET SDK already installed" fi dotnet --version ''' @@ -46,7 +45,7 @@ pipeline { echo 'Build failed!' } always { - cleanWs() + deleteDir() } } }