Skip to content

Commit 1fd7b06

Browse files
[8.18] (backport #18049) Stop waiting on ALL steps before staring junit annotation (#18054)
* Stop waiting on ALL steps before staring junit annotation (#18049) The junit annotation previously would wait for EVERY step to finish before running. It takes a non trivial amount of time and was consistenly adding several minute to the total run time. The only artifacts it annotates are emmited by the java unit tests. This commit updates the buildkite manifest to properly define that relationship such that it will start as soon as the java tests step is done instead of waiting for ALL steps. (cherry picked from commit 91a9527) # Conflicts: # .buildkite/pull_request_pipeline.yml * Fix merge conflict --------- Co-authored-by: Cas Donoghue <[email protected]>
1 parent 0e59efb commit 1fd7b06

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.buildkite/pull_request_pipeline.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,8 @@ steps:
337337
source .buildkite/scripts/common/container-agent.sh
338338
x-pack/ci/integration_tests.sh
339339
340-
- wait: ~
341-
continue_on_failure: true
342-
343340
- label: "🏁 Annotate JUnit results"
341+
depends_on: "java-unit-tests"
344342
# the plugin requires docker run, hence the use of a VM
345343
agents:
346344
provider: gcp

0 commit comments

Comments
 (0)