From 86cd09c55d6f4c4c3ed94d9816d3fdce952e893d Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sat, 12 Oct 2024 07:39:11 +0300 Subject: [PATCH] Fixing the build --- Dockerfile.jenkins | 3 ++- Jenkinsfile | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) 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' }