Jenkins fix (#139)

* Update Jenkinsfile

* Update Jenkinsfile
This commit is contained in:
Telesphoreo 2023-08-22 23:07:02 -05:00
parent 511733b8d5
commit 76822727f6
No known key found for this signature in database
GPG Key ID: 9D1991811E093C02

7
Jenkinsfile vendored
View File

@ -4,6 +4,11 @@ pipeline {
GITHUB_BRANCH = "${BRANCH_NAME}" GITHUB_BRANCH = "${BRANCH_NAME}"
} }
stages { 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') { stage('applyPatches') {
steps { steps {
withGradle { withGradle {
@ -40,4 +45,4 @@ pipeline {
cleanWs() cleanWs()
} }
} }
} }