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
|
mkdir cpp\\build
|
||||||
cd cpp\\build
|
cd cpp\\build
|
||||||
cmake ..
|
cmake ..
|
||||||
dotnet build -c Release
|
cmake --build .
|
||||||
|
|
||||||
cd ..\\..
|
cd ..\\..
|
||||||
|
|
||||||
|
@ -65,8 +65,9 @@ pipeline {
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
|
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
|
||||||
archiveArtifacts artifacts: "cpp\\build\\vsleep.exe", fingerprint: true
|
archiveArtifacts artifacts: "cpp\\build\\Debug\\vsleep.exe", fingerprint: true
|
||||||
archiveArtifacts artifacts: "cpp\\build\\pause.exe", fingerprint: true
|
archiveArtifacts artifacts: "cpp\\build\\Debug\\pause.exe", fingerprint: true
|
||||||
|
deleteDir()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue