From 4444cb5ffe7e05e88f5790209a22329c298881dd Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 4 Nov 2020 11:12:02 +0100 Subject: [PATCH] DATACASS-821 - Enable Maven caching for Jenkins jobs. --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 541ddea4e..f8e9fa938 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,6 +61,7 @@ pipeline { docker { image 'springci/spring-data-openjdk8-cassandra-3.11:latest' label 'data' + args '-v $HOME:/tmp/jenkins-home' } } options { timeout(time: 30, unit: 'MINUTES') } @@ -85,6 +86,7 @@ pipeline { docker { image 'springci/spring-data-openjdk11-8-cassandra-3.11:latest' label 'data' + args '-v $HOME:/tmp/jenkins-home' } } options { timeout(time: 30, unit: 'MINUTES') } @@ -107,6 +109,7 @@ pipeline { docker { image 'adoptopenjdk/openjdk8:latest' label 'data' + args '-v $HOME:/tmp/jenkins-home' } } options { timeout(time: 20, unit: 'MINUTES') } @@ -135,6 +138,7 @@ pipeline { docker { image 'adoptopenjdk/openjdk8:latest' label 'data' + args '-v $HOME:/tmp/jenkins-home' } } options { timeout(time: 20, unit: 'MINUTES') }