[libcxx-commits] [libcxx] 3ef363e - [libc++] Re-enable `GCC11 / C++11`, `Clang 12` and `ASAN` CI-runs

Nikolas Klauser via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jan 6 09:54:49 PST 2022


Author: Nikolas Klauser
Date: 2022-01-06T18:52:44+01:00
New Revision: 3ef363ecec8f236683fb377e755e1fcf6f2eb0b5

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

LOG: [libc++] Re-enable `GCC11 / C++11`, `Clang 12` and `ASAN` CI-runs

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 11ad8b4420473..f19015055f85e 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -162,32 +162,32 @@ steps:
 
   # TODO: Due to ongoing CI outage on our Linux nodes, most configurations running on Linux
   #       are disabled. We are currently running off of a much smaller fleet than normally.
-  # # Tests with the supported compilers.
-  # - label: "GCC 11 / C++11"
-  #   command: "libcxx/utils/ci/run-buildbot generic-gcc-cxx11"
-  #   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 supported compilers.
+  - label: "GCC 11 / C++11"
+    command: "libcxx/utils/ci/run-buildbot generic-gcc-cxx11"
+    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: "Clang 12"
-  #   command: "libcxx/utils/ci/run-buildbot generic-clang-12"
-  #   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: "Clang 12"
+    command: "libcxx/utils/ci/run-buildbot generic-clang-12"
+    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: "Clang 13"
   #   command: "libcxx/utils/ci/run-buildbot generic-clang-13"
@@ -202,19 +202,19 @@ steps:
   #         limit: 2
   #   timeout_in_minutes: 120
 
-  # # Tests with the sanitizers.
-  # - label: "ASAN"
-  #   command: "libcxx/utils/ci/run-buildbot generic-asan"
-  #   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 sanitizers.
+  - label: "ASAN"
+    command: "libcxx/utils/ci/run-buildbot generic-asan"
+    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: "TSAN"
   #   command: "libcxx/utils/ci/run-buildbot generic-tsan"


        


More information about the libcxx-commits mailing list