Add Jenkinsfile
This commit is contained in:
parent
31e7d20175
commit
b37347d8b9
|
@ -0,0 +1,28 @@
|
|||
pipeline {
|
||||
|
||||
agent {
|
||||
dockerfile {
|
||||
filename 'Dockerfile.jenkins'
|
||||
dir '.'
|
||||
args '-u root --privileged'
|
||||
}
|
||||
}
|
||||
|
||||
triggers {
|
||||
cron("59 23 * * 1") // Build every monday
|
||||
}
|
||||
|
||||
options {
|
||||
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
||||
}
|
||||
|
||||
stages {
|
||||
stage("Build") {
|
||||
steps {
|
||||
sh 'make'
|
||||
archiveArtifacts artifacts: 'setup_*.exe'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue