Skip to content

Commit

Permalink
fix: apply X version for non-master branches (elastic#1037)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Apr 14, 2021
1 parent a2a7aa0 commit 31d3ed0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .ci/e2eKibana.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ def runE2ETests(String suite) {
log(level: 'DEBUG', text: "Triggering '${suite}' E2E tests for PR-${env.GT_PR}.")

// Kibana's maintenance branches follow the 7.11, 7.12 schema.
def branchName = "${env.GT_BASE_REF}.x"
def branchName = "${env.GT_BASE_REF}"
if (${env.GT_BASE_REF} != "master") {
branchName = "${env.GT_BASE_REF}.x"
}
def e2eTestsPipeline = "e2e-tests/e2e-testing-mbp/${branchName}"

def parameters = [
Expand Down

0 comments on commit 31d3ed0

Please sign in to comment.