From e87e11e5ebb33d9b72a320b9e34e56b801c14398 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Tue, 19 Mar 2024 19:26:50 +0100 Subject: [PATCH] [Build] Simplify build-script in pipeline for windows native binaries This reduces the prerequisites for a Jenkins executor to run that part of the build pipeline. --- Jenkinsfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2aeea9c8a3..dbc15d6d3b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -223,13 +223,10 @@ pipeline { ls -1R libs ''' } else { - withEnv(['PATH=C:\\tools\\cygwin\\bin;' + env.PATH]) { - bat ''' - mkdir libs - cmd /c build.bat install - ls -1R libs - ''' - } + bat ''' + mkdir libs + cmd /c build.bat install + ''' } } dir('libs') {