Fixing the build
This commit is contained in:
parent
2b31c0ebac
commit
86cd09c55d
|
@ -2,4 +2,5 @@ FROM schemers/gauche
|
||||||
RUN echo "deb http://ftp.de.debian.org/debian bookworm main" > /etc/apt/sources.list
|
RUN echo "deb http://ftp.de.debian.org/debian bookworm main" > /etc/apt/sources.list
|
||||||
RUN dpkg --add-architecture i386
|
RUN dpkg --add-architecture i386
|
||||||
RUN apt update && apt install -y wine32 wine64 make wget
|
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
|
||||||
|
|
|
@ -16,7 +16,6 @@ pipeline {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
steps {
|
steps {
|
||||||
sh 'whoami'
|
sh 'whoami'
|
||||||
sh 'WINEPREFIX=${HOME}/.wine wine ./executables/nsis-3.10-setup.exe /S'
|
|
||||||
sh 'make'
|
sh 'make'
|
||||||
archiveArtifacts artifacts: 'setup_*.exe'
|
archiveArtifacts artifacts: 'setup_*.exe'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue