[CI] Disable tracked branch jobs in Jenkins, enable reporting in Buildkite (#112604)

This commit is contained in:
Brian Seeders 2021-09-21 11:31:15 -04:00 committed by GitHub
parent 924ad66450
commit 14b2157990
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -22,6 +22,5 @@ if [[ "$IS_TEST_EXECUTION_STEP" == "true" ]]; then
buildkite-agent artifact upload 'x-pack/test/functional/failure_debug/html/*.html'
buildkite-agent artifact upload '.es/**/*.hprof'
# TODO - re-enable when Jenkins is disabled
# node scripts/report_failed_tests --build-url="${BUILDKITE_BUILD_URL}#${BUILDKITE_JOB_ID}" 'target/junit/**/*.xml'
node scripts/report_failed_tests --build-url="${BUILDKITE_BUILD_URL}#${BUILDKITE_JOB_ID}" 'target/junit/**/*.xml'
fi

5
Jenkinsfile vendored
View file

@ -1,5 +1,10 @@
#!/bin/groovy
if (!env.ghprbPullId) {
print "Non-PR builds are now in Buildkite."
return
}
library 'kibana-pipeline-library'
kibanaLibrary.load()