Use bat not sh for windows builds on Jenkins
This was causing an issue where the windows workspaces could not be cleared.
This commit is contained in:
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@@ -153,8 +153,8 @@ pipeline {
|
|||||||
withVS() {
|
withVS() {
|
||||||
bat 'msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64'
|
bat 'msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64'
|
||||||
}
|
}
|
||||||
sh 'mkdir Win/x64'
|
bat 'mkdir Win\\x64'
|
||||||
sh 'mv bin/Release/x64/host_usb_mixer_control.exe Win/x64/xmos_mixer.exe'
|
bat 'mv bin/Release/x64/host_usb_mixer_control.exe Win/x64/xmos_mixer.exe'
|
||||||
archiveArtifacts artifacts: "Win/x64/xmos_mixer.exe", fingerprint: true
|
archiveArtifacts artifacts: "Win/x64/xmos_mixer.exe", fingerprint: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user