We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8324391 commit e7ed2ebCopy full SHA for e7ed2eb
1 file changed
Jenkinsfile
@@ -642,7 +642,7 @@ pipeline {
642
stage('Upload odoc') {
643
when {
644
beforeAgent true
645
- anyOf { branch 'master' }
+ branch 'master'
646
}
647
options { skipDefaultCheckout(true) }
648
agent {
@@ -656,7 +656,7 @@ pipeline {
656
steps {
657
retry(3) {
658
checkout([$class: 'GitSCM',
659
- branches: ["master", "gh-pages"],
+ branches: [[name: '*/master'], [name: '*/gh-pages']],
660
doGenerateSubmoduleConfigurations: false,
661
extensions: [],
662
submoduleCfg: [],
0 commit comments