Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
fix: apply X version for non-master branches
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Apr 14, 2021
1 parent 880b9d3 commit 5d35046
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 5d35046

Please sign in to comment.