Make the build work in Jenkins #1

Merged
Retropikzel merged 28 commits from development into main 2024-10-12 00:42:35 -04:00
1 changed files with 7 additions and 4 deletions
Showing only changes of commit b006160931 - Show all commits

11
Jenkinsfile vendored
View File

@ -1,10 +1,7 @@
pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
}
label 'agent2'
}
options {
@ -13,6 +10,12 @@ pipeline {
stages {
stage("Build") {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
}
}
steps {
sh 'whoami'
sh 'WINEPREFIX=${HOME}/.wine wine ./executables/nsis-3.10-setup.exe /S'