Fixing the build
This commit is contained in:
parent
b006160931
commit
5a11da9ea4
|
@ -2,3 +2,4 @@ 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
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
|
|
||||||
agent {
|
agent {
|
||||||
label 'agent2'
|
dockerfile {
|
||||||
|
filename 'Dockerfile.jenkins'
|
||||||
|
dir '.'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
|
@ -10,12 +13,6 @@ pipeline {
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
agent {
|
|
||||||
dockerfile {
|
|
||||||
filename 'Dockerfile.jenkins'
|
|
||||||
dir '.'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
steps {
|
steps {
|
||||||
sh 'whoami'
|
sh 'whoami'
|
||||||
sh 'WINEPREFIX=${HOME}/.wine wine ./executables/nsis-3.10-setup.exe /S'
|
sh 'WINEPREFIX=${HOME}/.wine wine ./executables/nsis-3.10-setup.exe /S'
|
||||||
|
|
Loading…
Reference in New Issue