pipeline {
agent {
node {
label 'base'
}
}
stages {
stage('default-0') {
parallel {
stage('b') {
steps {
git(url: 'https://github.com/shaowenchen/pipeline-test', changelog: true, poll: false)
}
}
stage('c') {
steps {
git(url: 'https://github.com/kubesphere/helm-charts', changelog: true, poll: false)
}
}
}
}
}
}