From cbd52d38d914329827594ea565a96bdbbf10a512 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Tue, 22 Aug 2023 23:07:02 -0500 Subject: [PATCH] Jenkins fix (#139) * Update Jenkinsfile * Update Jenkinsfile --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9f4eb85..24ba777 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,11 @@ pipeline { GITHUB_BRANCH = "${BRANCH_NAME}" } stages { + stage("clone") { + steps { + checkout scmGit(branches: [[name: '*/slime/1.20.1']], extensions: [submodule(parentCredentials: true, recursiveSubmodules: true, reference: '')], userRemoteConfigs: [[url: 'https://github.com/AtlasMediaGroup/Scissors']]) + } + } stage('applyPatches') { steps { withGradle { @@ -40,4 +45,4 @@ pipeline { cleanWs() } } -} \ No newline at end of file +}