diff --git a/Dockerfile.jenkins b/Dockerfile.jenkins index 6dace57..b6a2bc5 100644 --- a/Dockerfile.jenkins +++ b/Dockerfile.jenkins @@ -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 diff --git a/Jenkinsfile b/Jenkinsfile index 50d7a49..dd463a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' }