snow-fort-windows-installer/Jenkinsfile

30 lines
537 B
Groovy

pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
args '-u root --privileged'
}
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Build") {
steps {
sh 'make clean'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
post {
always {
deleteDir()
}
}