snow-fort-windows-installer/Jenkinsfile

25 lines
442 B
Plaintext
Raw Normal View History

pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
}
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Build") {
steps {
2024-10-12 00:30:22 -04:00
sh 'make install-nsis'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
}