snow-fort-windows-installer/Jenkinsfile

27 lines
502 B
Plaintext
Raw Normal View History

pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
args '-u root --privileged'
}
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Build") {
steps {
sh 'whoami'
2024-10-12 00:47:48 -04:00
sh 'make snow'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
}