snow-fort-windows-installer/Jenkinsfile

30 lines
547 B
Plaintext
Raw Permalink Normal View History

pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
args '-u root --privileged'
}
}
2024-10-12 00:51:01 -04:00
triggers {
cron("59 23 * * 1") // Build every monday
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Build") {
steps {
2024-10-12 00:49:31 -04:00
sh 'make clean'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
}