snow-fort-windows-installer/Jenkinsfile

24 lines
403 B
Plaintext
Raw Normal View History

pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
}
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Build") {
steps {
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
}