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 2 additions and 2 deletions
Showing only changes of commit 86cd09c55d - Show all commits

View File

@ -2,4 +2,5 @@ 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
COPY ./executables/nsis-3.10-setup.exe /workdir/setup.exe
RUN wine setup.exe /S

1
Jenkinsfile vendored
View File

@ -16,7 +16,6 @@ pipeline {
stage("Build") {
steps {
sh 'whoami'
sh 'WINEPREFIX=${HOME}/.wine wine ./executables/nsis-3.10-setup.exe /S'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}