[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
Wed May 26 04:28:28 PDT 2021
ldionne updated this revision to Diff 347921.
ldionne added a comment.
Poke CI
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103116/new/
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.347921.patch
Type: text/x-patch
Size: 1116 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210526/3b06bcb0/attachment.bin>
More information about the libcxx-commits
mailing list