We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924ad66 commit 14b2157Copy full SHA for 14b2157
.buildkite/scripts/lifecycle/post_command.sh
@@ -22,6 +22,5 @@ if [[ "$IS_TEST_EXECUTION_STEP" == "true" ]]; then
22
buildkite-agent artifact upload 'x-pack/test/functional/failure_debug/html/*.html'
23
buildkite-agent artifact upload '.es/**/*.hprof'
24
25
- # TODO - re-enable when Jenkins is disabled
26
- # 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'
27
fi
Jenkinsfile
@@ -1,5 +1,10 @@
1
#!/bin/groovy
2
3
+if (!env.ghprbPullId) {
4
+ print "Non-PR builds are now in Buildkite."
5
+ return
6
+}
7
+
8
library 'kibana-pipeline-library'
9
kibanaLibrary.load()
10
0 commit comments