Jenkins fix (#139)

* Update Jenkinsfile

* Update Jenkinsfile
This commit is contained in:
Telesphoreo 2023-08-22 23:07:02 -05:00 committed by GitHub
parent 8f2be500b5
commit cbd52d38d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View File

@ -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()
}
}
}
}