[libc++] Revert the change that runs clang-format and generated-output in the service...
authorLouis Dionne <ldionne.2@gmail.com>
Fri, 30 Apr 2021 18:07:08 +0000 (14:07 -0400)
committerLouis Dionne <ldionne.2@gmail.com>
Fri, 30 Apr 2021 18:07:08 +0000 (14:07 -0400)
This reverts commit 6712534ebc6f84f0b178a19bf17b7b2bd852f6eb.

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

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

index ecfbac8..1023d74 100644 (file)
@@ -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
index 17cb85b..1042b11 100755 (executable)
@@ -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 diffs 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