changed jenkins file to use sh rather than runVS

This commit is contained in:
Tom Williams
2023-02-01 16:29:05 +00:00
parent 63763cf4f5
commit 379e8eb54c

4
Jenkinsfile vendored
View File

@@ -149,8 +149,8 @@ pipeline {
} }
dir("host_usb_mixer_control") { dir("host_usb_mixer_control") {
runVS('msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64') runVS('msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64')
runVS('mkdir Win/x64') sh 'mkdir Win/x64'
runVS('move bin/Release/x64/host_usb_mixer_control.exe Win/x64/xmos_mixer.exe') sh '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
} }
} }