Jenkins: Dummy commit to test new webhook flow

This commit is contained in:
richardg867
2022-07-15 20:39:06 -03:00
committed by GitHub
parent 3b2b0b984a
commit a8be5d1f18

2
.ci/Jenkinsfile vendored
View File

@@ -137,7 +137,7 @@ def removeDir(dir) {
def runBuild(args) {
if (isUnix())
return sh(returnStatus: true, script: "chmod u+x \"$WORKSPACE/.ci/build.sh\" && exec \"$WORKSPACE/.ci/build.sh\" $args")
return sh(returnStatus: true, script: "chmod u+x '$WORKSPACE/.ci/build.sh' && exec '$WORKSPACE/.ci/build.sh' $args")
else
return bat(returnStatus: true, script: "C:\\msys64\\msys2_shell.cmd -msys2 -defterm -here -no-start -c 'exec \"\$(cygpath -u \\'%WORKSPACE%\\')/.ci/build.sh\" $args'")
}