From 950a7852133c7a25a366c0592d34006ea6bea0de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8E=86=E5=86=B0=E9=83=81-hermes=E7=89=88?= Date: Wed, 6 May 2026 15:38:31 +0800 Subject: [PATCH] ci: avoid cygpath in stdb windows bash --- jenkins/Jenkinsfile.production-stdb-module-build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/Jenkinsfile.production-stdb-module-build b/jenkins/Jenkinsfile.production-stdb-module-build index a5d5812c..6a409e9e 100644 --- a/jenkins/Jenkinsfile.production-stdb-module-build +++ b/jenkins/Jenkinsfile.production-stdb-module-build @@ -81,9 +81,9 @@ pipeline { } $bashScript = @" set -euo pipefail - export CARGO_HOME="`$(cygpath -u '$($env:CARGO_HOME)')" - export CARGO_TARGET_DIR="`$(cygpath -u '$($env:CARGO_TARGET_DIR)')" - export SCCACHE_DIR="`$(cygpath -u '$($env:SCCACHE_DIR)')" + export CARGO_HOME='$($env:CARGO_HOME)' + export CARGO_TARGET_DIR='$($env:CARGO_TARGET_DIR)' + export SCCACHE_DIR='$($env:SCCACHE_DIR)' export CARGO_INCREMENTAL='$($env:CARGO_INCREMENTAL)' export RUSTC_WRAPPER='$($env:RUSTC_WRAPPER)' export SCCACHE_CACHE_SIZE='$($env:SCCACHE_CACHE_SIZE)'