[libcxx-commits] [libcxx] d2a8d36 - [libc++][ci] Stop testing on GCC previous, since we don't support it anymore

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 8 09:33:34 PDT 2021


Author: Louis Dionne
Date: 2021-07-08T12:33:26-04:00
New Revision: d2a8d362c592b2f1918a0f8dca7442f9dd44fe82

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

LOG: [libc++][ci] Stop testing on GCC previous, since we don't support it anymore

This is the first of a few commits that update the CI to match the
recently officialized compiler support policy. I'm staging those
changes to try and keep the CI green at all times, accounting how
builders refresh their Docker image.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 6b9e540ae488f..50ea46597f421 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -140,17 +140,6 @@ steps:
   #
   - wait
 
-  - label: "GCC Previous/C++20"
-    command: "libcxx/utils/ci/run-buildbot generic-gcc-prev"
-    artifact_paths:
-      - "**/test-results.xml"
-    agents:
-      queue: "libcxx-builders"
-    retry:
-      automatic:
-        - exit_status: -1  # Agent was lost
-          limit: 2
-
   - label: "-fno-exceptions"
     command: "libcxx/utils/ci/run-buildbot generic-noexceptions"
     artifact_paths:

diff  --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index da4121cb900af..b0c3e1adcda4b 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -285,13 +285,6 @@ generic-gcc)
     generate-cmake
     check-cxx-cxxabi
 ;;
-generic-gcc-prev)
-    export CC=gcc-10
-    export CXX=g++-10
-    clean
-    generate-cmake
-    check-cxx-cxxabi
-;;
 generic-asan)
     export CC=clang
     export CXX=clang++


        


More information about the libcxx-commits mailing list