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