Make the build work in Jenkins #1

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

View File

@ -2,3 +2,4 @@ FROM schemers/gauche
RUN echo "deb http://ftp.de.debian.org/debian bookworm main" > /etc/apt/sources.list
RUN dpkg --add-architecture i386
RUN apt update && apt install -y wine32 wine64 make wget

11
Jenkinsfile vendored
View File

@ -1,7 +1,10 @@
pipeline {
agent {
label 'agent2'
dockerfile {
filename 'Dockerfile.jenkins'
dir '.'
}
}
options {
@ -10,12 +13,6 @@ 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'