[libcxx-commits] [PATCH] D150672: [libc++][NFC] Rename the 'noexceptions' CI config to 'no-exceptions' for consistency
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed May 17 09:55:24 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGafbd36f153af: [libc++][NFC] Rename the 'noexceptions' CI config to 'no-exceptions' for… (authored by ldionne).
Changed prior to commit:
https://reviews.llvm.org/D150672?vs=522617&id=523089#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D150672/new/
https://reviews.llvm.org/D150672
Files:
libcxx/cmake/caches/Armv7Thumb-no-exceptions.cmake
libcxx/cmake/caches/Armv7Thumb-noexceptions.cmake
libcxx/cmake/caches/Armv8Thumb-no-exceptions.cmake
libcxx/cmake/caches/Armv8Thumb-noexceptions.cmake
libcxx/cmake/caches/Generic-no-exceptions.cmake
libcxx/cmake/caches/Generic-noexceptions.cmake
libcxx/utils/ci/buildkite-pipeline.yml
libcxx/utils/ci/run-buildbot
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -434,9 +434,9 @@
check-runtimes
check-abi-list
;;
-generic-noexceptions)
+generic-no-exceptions)
clean
- generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-noexceptions.cmake"
+ generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-no-exceptions.cmake"
check-runtimes
check-abi-list
;;
@@ -556,7 +556,7 @@
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/AArch64.cmake"
check-runtimes
;;
-aarch64-noexceptions)
+aarch64-no-exceptions)
clean
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/AArch64.cmake" \
-DLIBCXX_ENABLE_EXCEPTIONS=OFF \
@@ -569,9 +569,9 @@
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv8Arm.cmake"
check-runtimes
;;
-armv8-noexceptions)
+armv8-no-exceptions)
clean
- generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv8Thumb-noexceptions.cmake"
+ generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv8Thumb-no-exceptions.cmake"
check-runtimes
;;
# Armv7 32 bit. One building Arm only one Thumb only code.
@@ -580,9 +580,9 @@
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv7Arm.cmake"
check-runtimes
;;
-armv7-noexceptions)
+armv7-no-exceptions)
clean
- generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv7Thumb-noexceptions.cmake"
+ generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Armv7Thumb-no-exceptions.cmake"
check-runtimes
;;
clang-cl-dll)
Index: libcxx/utils/ci/buildkite-pipeline.yml
===================================================================
--- libcxx/utils/ci/buildkite-pipeline.yml
+++ libcxx/utils/ci/buildkite-pipeline.yml
@@ -646,7 +646,7 @@
timeout_in_minutes: 120
- label: "No exceptions"
- command: "libcxx/utils/ci/run-buildbot generic-noexceptions"
+ command: "libcxx/utils/ci/run-buildbot generic-no-exceptions"
artifact_paths:
- "**/test-results.xml"
- "**/*.abilist"
@@ -919,7 +919,7 @@
timeout_in_minutes: 120
- label: "AArch64 -fno-exceptions"
- command: "libcxx/utils/ci/run-buildbot aarch64-noexceptions"
+ command: "libcxx/utils/ci/run-buildbot aarch64-no-exceptions"
artifact_paths:
- "**/test-results.xml"
- "**/*.abilist"
@@ -947,7 +947,7 @@
timeout_in_minutes: 120
- label: "Armv8 -fno-exceptions"
- command: "libcxx/utils/ci/run-buildbot armv8-noexceptions"
+ command: "libcxx/utils/ci/run-buildbot armv8-no-exceptions"
artifact_paths:
- "**/test-results.xml"
- "**/*.abilist"
@@ -975,7 +975,7 @@
timeout_in_minutes: 120
- label: "Armv7 -fno-exceptions"
- command: "libcxx/utils/ci/run-buildbot armv7-noexceptions"
+ command: "libcxx/utils/ci/run-buildbot armv7-no-exceptions"
artifact_paths:
- "**/test-results.xml"
- "**/*.abilist"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D150672.523089.patch
Type: text/x-patch
Size: 3093 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230517/63a0387e/attachment.bin>
More information about the libcxx-commits
mailing list