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

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Mar 23 11:10:34 PDT 2021


Author: Louis Dionne
Date: 2021-03-23T14:10:27-04:00
New Revision: 2e033b36bf71924a30b02a82092d4154c63a2513

URL: https://github.com/llvm/llvm-project/commit/2e033b36bf71924a30b02a82092d4154c63a2513
DIFF: https://github.com/llvm/llvm-project/commit/2e033b36bf71924a30b02a82092d4154c63a2513.diff

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

Added: 
    libcxx/cmake/caches/Generic-no-debug.cmake

Modified: 
    libcxx/utils/ci/buildkite-pipeline.yml
    libcxx/utils/ci/run-buildbot

Removed: 
    


################################################################################
diff  --git a/libcxx/cmake/caches/Generic-no-debug.cmake b/libcxx/cmake/caches/Generic-no-debug.cmake
new file mode 100644
index 0000000000000..a62760fa78fd6
--- /dev/null
+++ b/libcxx/cmake/caches/Generic-no-debug.cmake
@@ -0,0 +1 @@
+set(LIBCXX_ENABLE_DEBUG_MODE_SUPPORT OFF CACHE BOOL "")

diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 3eff6780133a6..6ef42f36f8585 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -178,7 +178,7 @@ steps:
           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/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index fc1721c48c17d..eb48ebd410c99 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -241,11 +241,11 @@ generic-singlethreaded)
     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)


        


More information about the libcxx-commits mailing list