Skip to content

Commit

Permalink
[Build] Simplify build-script in pipeline for windows native binaries
Browse files Browse the repository at this point in the history
This reduces the prerequisites for a Jenkins executor to run that part
of the build pipeline.
  • Loading branch information
HannesWell committed Mar 19, 2024
1 parent 78943aa commit e87e11e
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions Jenkinsfile
Expand Up @@ -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') {
Expand Down

0 comments on commit e87e11e

Please sign in to comment.