Fixing the build
This commit is contained in:
parent
b30d83188c
commit
ba6b4a8aca
|
@ -15,12 +15,15 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
steps {
|
steps {
|
||||||
sh 'whoami'
|
sh 'make clean'
|
||||||
sh 'make snow'
|
|
||||||
sh 'make'
|
sh 'make'
|
||||||
archiveArtifacts artifacts: 'setup_*.exe'
|
archiveArtifacts artifacts: 'setup_*.exe'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue