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

This commit is contained in:
Louis Dionne 2021-03-23 14:09:52 -04:00
parent 20c68d9441
commit 2e033b36bf
3 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1 @@
set(LIBCXX_ENABLE_DEBUG_MODE_SUPPORT OFF CACHE BOOL "")

View File

@ -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:

View File

@ -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)