Fixing the build

This commit is contained in:
retropikzel 2024-10-12 07:39:11 +03:00
parent 2b31c0ebac
commit 86cd09c55d
2 changed files with 2 additions and 2 deletions

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'
}