Add a build instruction to windows jenkins file
This commit is contained in:
parent
53f02dbb9d
commit
8bf4e77b2f
1 changed files with 4 additions and 3 deletions
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
@ -40,7 +40,7 @@ pipeline {
|
|||
mkdir cpp\\build
|
||||
cd cpp\\build
|
||||
cmake ..
|
||||
dotnet build -c Release
|
||||
cmake --build .
|
||||
|
||||
cd ..\\..
|
||||
|
||||
|
@ -65,8 +65,9 @@ pipeline {
|
|||
post {
|
||||
always {
|
||||
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
|
||||
archiveArtifacts artifacts: "cpp\\build\\vsleep.exe", fingerprint: true
|
||||
archiveArtifacts artifacts: "cpp\\build\\pause.exe", fingerprint: true
|
||||
archiveArtifacts artifacts: "cpp\\build\\Debug\\vsleep.exe", fingerprint: true
|
||||
archiveArtifacts artifacts: "cpp\\build\\Debug\\pause.exe", fingerprint: true
|
||||
deleteDir()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue