summaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2023-05-16 07:48:13 -0700
committerLouis Dionne <ldionne.2@gmail.com>2023-05-17 09:55:03 -0700
commitafbd36f153afc6cfe7a07baa42076e50b2d63d96 (patch)
tree4dc99806d34604023905d11f645690782afe0a66 /libcxx
parentae2389bed2015b7d5b42bee619351261779b62c6 (diff)
downloadllvm-afbd36f153afc6cfe7a07baa42076e50b2d63d96.tar.gz
[libc++][NFC] Rename the 'noexceptions' CI config to 'no-exceptions' for consistency
Differential Revision: https://reviews.llvm.org/D150672
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/cmake/caches/Armv7Thumb-no-exceptions.cmake (renamed from libcxx/cmake/caches/Armv7Thumb-noexceptions.cmake)0
-rw-r--r--libcxx/cmake/caches/Armv8Thumb-no-exceptions.cmake (renamed from libcxx/cmake/caches/Armv8Thumb-noexceptions.cmake)0
-rw-r--r--libcxx/cmake/caches/Generic-no-exceptions.cmake (renamed from libcxx/cmake/caches/Generic-noexceptions.cmake)0
-rw-r--r--libcxx/utils/ci/buildkite-pipeline.yml8
-rwxr-xr-xlibcxx/utils/ci/run-buildbot14
5 files changed, 11 insertions, 11 deletions
diff --git a/libcxx/cmake/caches/Armv7Thumb-noexceptions.cmake b/libcxx/cmake/caches/Armv7Thumb-no-exceptions.cmake
index 71173af106b6..71173af106b6 100644
--- a/libcxx/cmake/caches/Armv7Thumb-noexceptions.cmake
+++ b/libcxx/cmake/caches/Armv7Thumb-no-exceptions.cmake
diff --git a/libcxx/cmake/caches/Armv8Thumb-noexceptions.cmake b/libcxx/cmake/caches/Armv8Thumb-no-exceptions.cmake
index 316edd314906..316edd314906 100644
--- a/libcxx/cmake/caches/Armv8Thumb-noexceptions.cmake
+++ b/libcxx/cmake/caches/Armv8Thumb-no-exceptions.cmake
diff --git a/libcxx/cmake/caches/Generic-noexceptions.cmake b/libcxx/cmake/caches/Generic-no-exceptions.cmake
index f0dffef60dba..f0dffef60dba 100644
--- a/libcxx/cmake/caches/Generic-noexceptions.cmake
+++ b/libcxx/cmake/caches/Generic-no-exceptions.cmake
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 474138d21f4f..3323fdb8b2d9 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -646,7 +646,7 @@ steps:
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 @@ steps:
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 @@ steps:
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 @@ steps:
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"
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index cd70d73a52f5..17ff2d6b7940 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -434,9 +434,9 @@ generic-no-experimental)
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 @@ aarch64)
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 @@ armv8)
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 @@ armv7)
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)