Update Jenkinsfile

This commit is contained in:
Telesphoreo 2023-08-23 16:43:37 -05:00 committed by GitHub
parent 1bbbb18b2e
commit d013cfde88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View File

@ -4,9 +4,9 @@ pipeline {
GITHUB_BRANCH = "${BRANCH_NAME}"
}
stages {
stage("clone") {
stage('checkout') {
steps {
sh 'git submodule update --recursive'
checkout scmGit(branches: [[name: '*/slime/1.20.1']], extensions: [submodule(parentCredentials: true, recursiveSubmodules: true, reference: 'https://github.com/InfernalSuite/AdvancedSlimePaper')], userRemoteConfigs: [[url: 'https://github.com/AtlasMediaGroup/Scissors']])
}
}
stage('applyPatches') {