[libcxx-commits] [libcxx] c7b255e - [libc++][ci] Re-enable the bootstrapping build

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Feb 1 12:29:53 PST 2022


Author: Louis Dionne
Date: 2022-02-01T15:29:00-05:00
New Revision: c7b255e5a8eddbbc41f5c1ec7e9d3db83190ccd8

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

LOG: [libc++][ci] Re-enable the bootstrapping build

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

Added: 
    

Modified: 
    libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp
    libcxx/utils/ci/buildkite-pipeline.yml

Removed: 
    


################################################################################
diff  --git a/libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp b/libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp
index b346316080060..78a612ee0a511 100644
--- a/libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp
+++ b/libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp
@@ -11,6 +11,9 @@
 // UNSUPPORTED: libcpp-has-no-localization
 // UNSUPPORTED: c++03
 
+// TODO: Investigate this failure, which happens only with the Bootstrapping build.
+// UNSUPPORTED: clang-14
+
 // RUN: %{cxx} %{flags} %s -o %t.exe %{compile_flags} -g %{link_flags}
 // Ensure locale-independence for unicode tests.
 // RUN: env LANG=en_US.UTF-8 %{gdb} -nx -batch -iex "set autoload off" -ex "source %S/../../../utils/gdb/libcxx/printers.py" -ex "python register_libcxx_printer_loader()" -ex "source %S/gdb_pretty_printer_test.py" %t.exe

diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index cf2b9d9c82120..f72d26d53452a 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -240,20 +240,19 @@ steps:
           limit: 2
     timeout_in_minutes: 120
 
-  # # Tests with the various supported ways to build libc++.
-  # TODO: Fix failures with the GDB pretty printers
-  # - label: "Bootstrapping build"
-  #   command: "libcxx/utils/ci/run-buildbot bootstrapping-build"
-  #   artifact_paths:
-  #     - "**/test-results.xml"
-  #   agents:
-  #     queue: "libcxx-builders"
-  #     os: "linux"
-  #   retry:
-  #     automatic:
-  #       - exit_status: -1  # Agent was lost
-  #         limit: 2
-  #   timeout_in_minutes: 120
+  # Tests with the various supported ways to build libc++.
+  - label: "Bootstrapping build"
+    command: "libcxx/utils/ci/run-buildbot bootstrapping-build"
+    artifact_paths:
+      - "**/test-results.xml"
+    agents:
+      queue: "libcxx-builders"
+      os: "linux"
+    retry:
+      automatic:
+        - exit_status: -1  # Agent was lost
+          limit: 2
+    timeout_in_minutes: 120
 
   - label: "Legacy Lit configuration"
     command: "libcxx/utils/ci/run-buildbot legacy-test-config"


        


More information about the libcxx-commits mailing list