[libcxx-commits] [PATCH] D103116: [libc++] Add a job testing on GCC 11
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue May 25 14:35:11 PDT 2021
ldionne created this revision.
Herald added a subscriber: arichardson.
ldionne requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
I'm adding the job as a soft-fail for now, but once all the tests have
been fixed to work on it, we'll switch over from GCC 10 to GCC 11 and
remove the soft-fail.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D103116
Files:
libcxx/utils/ci/buildkite-pipeline.yml
libcxx/utils/ci/run-buildbot
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -270,6 +270,13 @@
generate-cmake
check-cxx-cxxabi
;;
+generic-gcc-next)
+ export CC=gcc-11
+ export CXX=g++-11
+ clean
+ generate-cmake
+ check-cxx-cxxabi
+;;
generic-asan)
export CC=clang
export CXX=clang++
Index: libcxx/utils/ci/buildkite-pipeline.yml
===================================================================
--- libcxx/utils/ci/buildkite-pipeline.yml
+++ libcxx/utils/ci/buildkite-pipeline.yml
@@ -135,6 +135,19 @@
- exit_status: -1 # Agent was lost
limit: 2
+ - label: "GCC/C++20 next"
+ command: "libcxx/utils/ci/run-buildbot generic-gcc-next"
+ artifact_paths:
+ - "**/test-results.xml"
+ agents:
+ queue: "libcxx-builders"
+ retry:
+ automatic:
+ - exit_status: -1 # Agent was lost
+ limit: 2
+ soft_fail:
+ - exit_status: 1
+
#
# All other supported configurations of libc++.
#
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103116.347787.patch
Type: text/x-patch
Size: 1116 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210525/18ed0c64/attachment.bin>
More information about the libcxx-commits
mailing list