Split up windows instructions

This commit is contained in:
zontreck 2024-08-30 23:52:43 -07:00
parent 68e26ab33b
commit 4a0089de3b

11
Jenkinsfile vendored
View file

@ -50,7 +50,12 @@ pipeline {
cmake --build . cmake --build .
cd ..\\.. cd ..\\..
'''
archiveArtifacts artifacts: "cpp\\build\\Debug\\vsleep.exe", fingerprint: true
archiveArtifacts artifacts: "cpp\\build\\Debug\\pause.exe", fingerprint: true
bat '''
cd dart cd dart
mkdir out mkdir out
dart pub get dart pub get
@ -65,13 +70,13 @@ pipeline {
cd .. cd ..
''' '''
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
} }
post { post {
always { always {
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
archiveArtifacts artifacts: "cpp\\build\\Debug\\vsleep.exe", fingerprint: true
archiveArtifacts artifacts: "cpp\\build\\Debug\\pause.exe", fingerprint: true
deleteDir() deleteDir()
} }
} }