snow-fort-windows-installer/Jenkinsfile

26 lines
519 B
Plaintext
Raw Normal View History

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