Skip to content

Commit

Permalink
[libc++] NFC: nodebug => no-debug in the CI configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Mar 23, 2021
1 parent 20c68d9 commit 2e033b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions libcxx/cmake/caches/Generic-no-debug.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
set(LIBCXX_ENABLE_DEBUG_MODE_SUPPORT OFF CACHE BOOL "")
2 changes: 1 addition & 1 deletion libcxx/utils/ci/buildkite-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions libcxx/utils/ci/run-buildbot
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2e033b3

Please sign in to comment.