[libcxx-commits] [libcxx] 62e3f29 - [libc++] Use generic-cxx20 instead of apple-cxx20 on Apple CI
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 1 12:26:46 PST 2023
Author: Louis Dionne
Date: 2023-03-01T15:26:18-05:00
New Revision: 62e3f298de80f818880d327b030655eb37799953
URL: https://github.com/llvm/llvm-project/commit/62e3f298de80f818880d327b030655eb37799953
DIFF: https://github.com/llvm/llvm-project/commit/62e3f298de80f818880d327b030655eb37799953.diff
LOG: [libc++] Use generic-cxx20 instead of apple-cxx20 on Apple CI
apple-cxx20 is equivalent to generic-cxx20, so we don't need it anymore.
It had been introduced when clang-tidy was enabled explicitly from
run-buildbot, but that's not needed anymore since clang-tidy is
enabled from the buildkite pipeline definition.
Added:
Modified:
libcxx/utils/ci/buildkite-pipeline.yml
libcxx/utils/ci/run-buildbot
Removed:
################################################################################
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index e80c536346aed..694d141ebebc2 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -783,7 +783,7 @@ steps:
- group: ":apple: Apple"
steps:
- label: "MacOS x86_64"
- command: "libcxx/utils/ci/run-buildbot apple-cxx20"
+ command: "libcxx/utils/ci/run-buildbot generic-cxx20"
artifact_paths:
- "**/test-results.xml"
- "**/*.abilist"
@@ -798,7 +798,7 @@ steps:
timeout_in_minutes: 120
- label: "MacOS arm64"
- command: "libcxx/utils/ci/run-buildbot apple-cxx20"
+ command: "libcxx/utils/ci/run-buildbot generic-cxx20"
artifact_paths:
- "**/test-results.xml"
- "**/*.abilist"
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index d7292ce4c6be2..8ff6decb0a344 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -448,12 +448,6 @@ generic-abi-unstable)
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-abi-unstable.cmake"
check-runtimes
;;
-apple-cxx20)
- clean
- generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx20.cmake"
- check-runtimes
- check-abi-list
-;;
apple-system)
clean
More information about the libcxx-commits
mailing list