[llvm-branch-commits] [libcxx] 9ac64ab - [libc++] Remove linux Buildkite builders entirely (#73825)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Nov 30 09:15:24 PST 2023
Author: Eric
Date: 2023-11-29T17:34:45-05:00
New Revision: 9ac64abc02c1f4433931cf0323c12663df02b14e
URL: https://github.com/llvm/llvm-project/commit/9ac64abc02c1f4433931cf0323c12663df02b14e
DIFF: https://github.com/llvm/llvm-project/commit/9ac64abc02c1f4433931cf0323c12663df02b14e.diff
LOG: [libc++] Remove linux Buildkite builders entirely (#73825)
This removes the Google hosted Linux buildkite builders. We have since
moved all of them over to github actions.
Follow up changes will be sent for android.
Added:
Modified:
.github/workflows/libcxx-build-and-test.yaml
libcxx/utils/ci/buildkite-pipeline.yml
Removed:
################################################################################
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index e929c02d11c1d93..5349ddd499c22d1 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -160,7 +160,11 @@ jobs:
'generic-no-unicode',
'generic-no-wide-characters',
'generic-static',
- 'generic-with_llvm_unwinder'
+ 'generic-with_llvm_unwinder',
+ # TODO Find a better place for the benchmark and bootstrapping builds to live. They're either very expensive
+ # or don't provide much value since the benchmark run results are too noise on the bots.
+ 'benchmarks',
+ 'bootstrapping-build'
]
machine: [ 'libcxx-runners-8' ]
std_modules: [ 'OFF' ]
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 06b0c55e6f3cab5..51b9999026247fd 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -43,10 +43,6 @@ definitions:
# Define agents using YAML anchors to reduce duplication
agents_definitions:
- _linux_agent: &linux_agent
- agents:
- queue: libcxx-builders
- os: linux
_windows_agent: &windows_agent
agents:
queue: windows
@@ -101,20 +97,6 @@ environment_definitions:
steps:
-- label: Bootstrapping build
- command: libcxx/utils/ci/run-buildbot bootstrapping-build
- env:
- <<: *common_env
- <<: *linux_agent
- <<: *common
-
-- label: Benchmarks
- command: libcxx/utils/ci/run-buildbot benchmarks
- env:
- <<: *common_env
- <<: *linux_agent
- <<: *common
-
- group: ':windows: Windows'
steps:
- label: Clang-cl (DLL)
More information about the llvm-branch-commits
mailing list