[libcxx-commits] [libcxx] 8002c5d - [libc++][ci] Run longer CI jobs first

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri May 7 11:04:52 PDT 2021


Author: Louis Dionne
Date: 2021-05-07T13:57:07-04:00
New Revision: 8002c5d65fdc979fc2f4fa33509f6c32caca3dce

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

LOG: [libc++][ci] Run longer CI jobs first

Jobs that test with a more recent standard version run more tests, so
they take longer. We'll decrease the average latency by running them
first instead of last.

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 d6c3a13246c7f..e99cdaa76c543 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -53,8 +53,8 @@ steps:
   #
   - wait
 
-  - label: "C++03"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx03"
+  - label: "C++2b"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx2b"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
@@ -65,8 +65,8 @@ steps:
         - exit_status: -1  # Agent was lost
           limit: 2
 
-  - label: "C++11"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx11"
+  - label: "C++20"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx20"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
@@ -77,8 +77,8 @@ steps:
         - exit_status: -1  # Agent was lost
           limit: 2
 
-  - label: "C++14"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx14"
+  - label: "C++17"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx17"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
@@ -89,8 +89,8 @@ steps:
         - exit_status: -1  # Agent was lost
           limit: 2
 
-  - label: "C++17"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx17"
+  - label: "C++14"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx14"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
@@ -100,9 +100,8 @@ steps:
       automatic:
         - exit_status: -1  # Agent was lost
           limit: 2
-
-  - label: "C++20"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx20"
+  - label: "C++11"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx11"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
@@ -113,8 +112,8 @@ steps:
         - exit_status: -1  # Agent was lost
           limit: 2
 
-  - label: "C++2b"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx2b"
+  - label: "C++03"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx03"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"


        


More information about the libcxx-commits mailing list