You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
327 B
11 lines
327 B
#!groovy
|
|
|
|
node {
|
|
def TIDB_TEST_BRANCH = "master"
|
|
def TIKV_BRANCH = "master"
|
|
def PD_BRANCH = "master"
|
|
|
|
fileLoader.withGit('git@github.com:pingcap/SRE.git', 'master', 'github-iamxy-ssh', '') {
|
|
fileLoader.load('jenkins/ci/pingcap_tidb_branch.groovy').call(TIDB_TEST_BRANCH, TIKV_BRANCH, PD_BRANCH)
|
|
}
|
|
}
|
|
|