Skip to content

Commit

Permalink
Adding wget and xz-utils to the jenkins env
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Jun 15, 2024
1 parent bd376f2 commit 5958049
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pipeline {
agent any
triggers { pollSCM('* * * * *') }

environment {
JAVA_HOME = "/usr/lib/jvm/java-17-openjdk-amd64"
Expand Down Expand Up @@ -35,9 +36,12 @@ pipeline {

stage ('snapshot') {
steps {
dir 'base/scripts' {
dir ('base/scripts') {
sh './lwr-snapshot ../../out'
}
dir ('out') {
sh 'date > timestamp.txt'
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jenkins-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ WORKDIR /data
WORKDIR /app

RUN apt-get update --fix-missing \
&& apt-get install -y --no-install-recommends timidity fluid-soundfont-gm midicsv sox ant \
&& apt-get install -y --no-install-recommends timidity fluid-soundfont-gm midicsv sox ant wget xz-utils \
&& rm -rf /var/lib/apt/lists/*

ENV JAVA_OPTS -Djenkins.install.runSetupWizard=false
Expand Down

0 comments on commit 5958049

Please sign in to comment.