Compare commits
No commits in common. "02a71445a5c05bef3f9b569109d55fc698639293" and "b62b8af5e386febacedf8b39ba3c5505eae17463" have entirely different histories.
02a71445a5
...
b62b8af5e3
|
@ -8,10 +8,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
triggers {
|
|
||||||
cron("59 23 * * 1") // Build every monday
|
|
||||||
}
|
|
||||||
|
|
||||||
options {
|
options {
|
||||||
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
||||||
}
|
}
|
||||||
|
@ -19,16 +15,11 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
steps {
|
steps {
|
||||||
sh 'make clean'
|
sh 'whoami'
|
||||||
sh 'make'
|
sh 'make'
|
||||||
archiveArtifacts artifacts: 'setup_*.exe'
|
archiveArtifacts artifacts: 'setup_*.exe'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
post {
|
|
||||||
always {
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue