snow-fort-windows-installer/Jenkinsfile

27 lines
534 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:32:00 -04:00
sh 'mkdir /.wine'
2024-10-12 00:31:22 -04:00
sh 'wine winecfg'
sh 'wine ./executables/nsis-3.10-setup.exe /S'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
}