From 6e662d0262c7827ab6fff7373e563f2c1bab45a1 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Tue, 14 Jun 2022 14:45:20 -0700 Subject: [PATCH] buildkite: move "Build everything" upper in the list It runs for a long time and so it would be good to run it earlier. PiperOrigin-RevId: 454960320 --- .buildkite/pipeline.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index d829c2efa..1cc0481dd 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -59,6 +59,13 @@ steps: label: ":fire: Smoke race tests" command: make smoke-race-tests + # Build everything. + - <<: *common + label: ":world_map: Build everything" + command: "make build OPTIONS=--build_tag_filters=-nogo TARGETS=//..." + agents: + arch: "amd64" + # Check that the Go branch builds. This is not technically required, as this build is maintained # as a GitHub action in order to preserve this maintaince across forks. However, providing the # action here may provide easier debuggability and diagnosis on failure. @@ -364,13 +371,6 @@ steps: arch: "amd64" os: "ubuntu" - # Build everything. - - <<: *common - label: ":world_map: Build everything" - command: "make build OPTIONS=--build_tag_filters=-nogo TARGETS=//..." - agents: - arch: "amd64" - # Run basic benchmarks smoke tests (no upload). - <<: *common label: ":fire: Benchmarks smoke test"