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

Co-authored-by: Brian Seeders <brian.seeders@elastic.co>
This commit is contained in:
Kibana Machine 2021-09-21 13:57:58 -04:00 committed by GitHub
parent f1baa86365
commit 7b710027f8
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()