snow-fort-windows-installer/Jenkinsfile

25 lines
491 B
Groovy

pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
}
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Build") {
steps {
sh 'WINEPREFIX=${HOME}/.wine wine ./executables/nsis-3.10-setup.exe /S'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
}