[libc++] NFC: nodebug => no-debug in the CI configurations

GitOrigin-RevId: 2e033b36bf71924a30b02a82092d4154c63a2513
diff --git a/cmake/caches/Generic-no-debug.cmake b/cmake/caches/Generic-no-debug.cmake
new file mode 100644
index 0000000..a62760f
--- /dev/null
+++ b/cmake/caches/Generic-no-debug.cmake
@@ -0,0 +1 @@
+set(LIBCXX_ENABLE_DEBUG_MODE_SUPPORT OFF CACHE BOOL "")
diff --git a/utils/ci/buildkite-pipeline.yml b/utils/ci/buildkite-pipeline.yml
index 3eff678..6ef42f3 100644
--- a/utils/ci/buildkite-pipeline.yml
+++ b/utils/ci/buildkite-pipeline.yml
@@ -178,7 +178,7 @@
           limit: 2
 
   - label: "No debug mode"
-    command: "libcxx/utils/ci/run-buildbot generic-nodebug"
+    command: "libcxx/utils/ci/run-buildbot generic-no-debug"
     artifact_paths:
       - "**/test-results.xml"
     agents:
diff --git a/utils/ci/run-buildbot b/utils/ci/run-buildbot
index fc1721c..eb48ebd 100755
--- a/utils/ci/run-buildbot
+++ b/utils/ci/run-buildbot
@@ -241,11 +241,11 @@
     generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-singlethreaded.cmake"
     check-cxx-cxxabi
 ;;
-generic-nodebug)
+generic-no-debug)
     export CC=clang
     export CXX=clang++
     clean
-    generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-nodebug.cmake"
+    generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-no-debug.cmake"
     check-cxx-cxxabi
 ;;
 generic-no-filesystem)