From 994adc74e5b36a5c6b6d28cba92697191de111e1 Mon Sep 17 00:00:00 2001 From: William Burns Date: Wed, 5 Oct 2022 12:04:05 -0700 Subject: [PATCH] Run against 14.0.0 --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c91928a4..1596edf2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,8 +25,9 @@ pipeline { stage('Build') { steps { // First we compile Infinispan SNAPSHOT - sh 'git clone --single-branch --branch main --depth 1 https://github.com/infinispan/infinispan.git' + sh 'git clone --single-branch --branch main --depth 15 https://github.com/infinispan/infinispan.git' dir('infinispan') { + sh 'git checkout b6384b6e47483927a27c7023ae979f523a241366' sh '$MAVEN_HOME/bin/mvn clean install -DskipTests' deleteDir() }