[libcxx-commits] [libcxx] 5c539ea - [libc++] Perform the bootstrapping build before legacy builds in CI
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Nov 16 09:44:31 PST 2021
Author: Louis Dionne
Date: 2021-11-16T12:44:22-05:00
New Revision: 5c539ea9f06b83b9b8fe9876ab87322fb4925f9f
URL: https://github.com/llvm/llvm-project/commit/5c539ea9f06b83b9b8fe9876ab87322fb4925f9f
DIFF: https://github.com/llvm/llvm-project/commit/5c539ea9f06b83b9b8fe9876ab87322fb4925f9f.diff
LOG: [libc++] Perform the bootstrapping build before legacy builds in CI
This is to help reduce latency by running longer jobs before shorter ones.
Added:
Modified:
libcxx/utils/ci/buildkite-pipeline.yml
Removed:
################################################################################
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index df9f23df82a6..ee00db2b22f4 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -241,8 +241,8 @@ steps:
timeout_in_minutes: 120
# Tests with the various supported ways to build libc++.
- - label: "Legacy Lit configuration"
- command: "libcxx/utils/ci/run-buildbot legacy-test-config"
+ - label: "Bootstrapping build"
+ command: "libcxx/utils/ci/run-buildbot bootstrapping-build"
artifact_paths:
- "**/test-results.xml"
agents:
@@ -254,8 +254,8 @@ steps:
limit: 2
timeout_in_minutes: 120
- - label: "Legacy standalone build"
- command: "libcxx/utils/ci/run-buildbot legacy-standalone"
+ - label: "Legacy Lit configuration"
+ command: "libcxx/utils/ci/run-buildbot legacy-test-config"
artifact_paths:
- "**/test-results.xml"
agents:
@@ -267,8 +267,8 @@ steps:
limit: 2
timeout_in_minutes: 120
- - label: "Legacy LLVM_ENABLE_PROJECTS build"
- command: "libcxx/utils/ci/run-buildbot legacy-project-build"
+ - label: "Legacy standalone build"
+ command: "libcxx/utils/ci/run-buildbot legacy-standalone"
artifact_paths:
- "**/test-results.xml"
agents:
@@ -280,8 +280,8 @@ steps:
limit: 2
timeout_in_minutes: 120
- - label: "Bootstrapping build"
- command: "libcxx/utils/ci/run-buildbot bootstrapping-build"
+ - label: "Legacy LLVM_ENABLE_PROJECTS build"
+ command: "libcxx/utils/ci/run-buildbot legacy-project-build"
artifact_paths:
- "**/test-results.xml"
agents:
More information about the libcxx-commits
mailing list