Split up windows instructions
This commit is contained in:
parent
68e26ab33b
commit
4a0089de3b
1 changed files with 9 additions and 4 deletions
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
|
@ -50,7 +50,12 @@ pipeline {
|
|||
cmake --build .
|
||||
|
||||
cd ..\\..
|
||||
'''
|
||||
|
||||
archiveArtifacts artifacts: "cpp\\build\\Debug\\vsleep.exe", fingerprint: true
|
||||
archiveArtifacts artifacts: "cpp\\build\\Debug\\pause.exe", fingerprint: true
|
||||
|
||||
bat '''
|
||||
cd dart
|
||||
mkdir out
|
||||
dart pub get
|
||||
|
@ -65,13 +70,13 @@ pipeline {
|
|||
|
||||
cd ..
|
||||
'''
|
||||
|
||||
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
|
||||
|
||||
}
|
||||
|
||||
post {
|
||||
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()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue