Fixing the build

This commit is contained in:
retropikzel 2024-10-12 07:35:42 +03:00
parent e6ee43838f
commit b006160931
1 changed files with 7 additions and 4 deletions

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'