[libcxx-commits] [libcxx] e47444e - [libc++] ci: Properly target macOS nodes per-os

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jul 12 14:26:40 PDT 2021


Author: Louis Dionne
Date: 2021-07-12T17:26:16-04:00
New Revision: e47444e2164c92712f0e6822d7796258b82fe4ba

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

LOG: [libc++] ci: Properly target macOS nodes per-os

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 a0484852fe04..edf707d8e419 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -455,7 +455,8 @@ steps:
       - "**/test-results.xml"
       - "**/*.abilist"
     agents:
-      queue: "libcxx-builders-macos"
+      queue: "libcxx-builders"
+      os: "macos"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost
@@ -467,7 +468,8 @@ steps:
     artifact_paths:
       - "**/test-results.xml"
     agents:
-      queue: "libcxx-builders-macos"
+      queue: "libcxx-builders"
+      os: "macos"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost
@@ -478,7 +480,8 @@ steps:
     artifact_paths:
       - "**/test-results.xml"
     agents:
-      queue: "libcxx-builders-macos"
+      queue: "libcxx-builders"
+      os: "macos"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost
@@ -490,7 +493,8 @@ steps:
     artifact_paths:
       - "**/test-results.xml"
     agents:
-      queue: "libcxx-builders-macos10.15" # TODO: For now, we're running the back-deployment tests for 10.9 on 10.15, because we don't have proper 10.9 machines
+      queue: "libcxx-builders"
+      os: "macos10.15" # TODO: For now, we're running the back-deployment tests for 10.9 on 10.15, because we don't have proper 10.9 machines
     retry:
       automatic:
         - exit_status: -1  # Agent was lost
@@ -501,7 +505,8 @@ steps:
     artifact_paths:
       - "**/test-results.xml"
     agents:
-      queue: "libcxx-builders-macos10.15"
+      queue: "libcxx-builders"
+      os: "macos10.15"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost


        


More information about the libcxx-commits mailing list