Fixing the build
This commit is contained in:
commit
02a71445a5
|
@ -8,6 +8,10 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
triggers {
|
||||||
|
cron("59 23 * * 1") // Build every monday
|
||||||
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
||||||
}
|
}
|
||||||
|
@ -15,11 +19,16 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
steps {
|
steps {
|
||||||
sh 'whoami'
|
sh 'make clean'
|
||||||
sh 'make'
|
sh 'make'
|
||||||
archiveArtifacts artifacts: 'setup_*.exe'
|
archiveArtifacts artifacts: 'setup_*.exe'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue