[libcxx-commits] [libcxx] 1b88557 - [libc++] Revert the change that runs clang-format and generated-output in the service queue

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Apr 30 11:07:55 PDT 2021


Author: Louis Dionne
Date: 2021-04-30T14:07:08-04:00
New Revision: 1b885573327d0f6b36f24ad23d243642f658750b

URL: https://github.com/llvm/llvm-project/commit/1b885573327d0f6b36f24ad23d243642f658750b
DIFF: https://github.com/llvm/llvm-project/commit/1b885573327d0f6b36f24ad23d243642f658750b.diff

LOG: [libc++] Revert the change that runs clang-format and generated-output in the service queue

This reverts commit 6712534ebc6f84f0b178a19bf17b7b2bd852f6eb.

Differential Revision: https://reviews.llvm.org/D101437

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index ecfbac8ec7937..1023d7430b145 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -27,7 +27,7 @@ steps:
     artifact_paths:
       - "**/clang-format.patch"
     agents:
-      queue: "service"
+      queue: "libcxx-builders"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost
@@ -40,7 +40,7 @@ steps:
     artifact_paths:
       - "**/generated_output.patch"
     agents:
-      queue: "service"
+      queue: "libcxx-builders"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost

diff  --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 17cb85b886acb..1042b110f2bf7 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -9,9 +9,6 @@
 
 set -ex
 set -o pipefail
-unset LANG
-unset LC_ALL
-unset LC_COLLATE
 
 PROGNAME="$(basename "${0}")"
 
@@ -149,7 +146,6 @@ check-generated-output)
     # Check if the 
diff s are empty, fail otherwise.
     ! grep -q '^--- a' ${BUILD_DIR}/generated_output.patch || false
     # Reject patches that introduce non-ASCII characters or hard tabs.
-    # Depends on LC_COLLATE set at the top of this script.
     ! grep -rn '[^ -~]' libcxx/include/ || false
     # Check that no dependency cycles have been introduced.
     python3 libcxx/utils/graph_header_deps.py >/dev/null


        


More information about the libcxx-commits mailing list