Split up windows instructions
This commit is contained in:
parent
68e26ab33b
commit
4a0089de3b
1 changed files with 9 additions and 4 deletions
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue