From 503baf52ed37917f44532e497909d04c6ad0af70 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Wed, 14 Oct 2020 00:05:55 +0900 Subject: [PATCH] ci: suppress clang 6 + cxx20 Since the main branch that passed the same check 9 days ago also fails with clang-6 and C++20 because of the same error, "undefined reference to allocator_traits::allocate". It could be a change in upstream and since others (e.g. gcc) works well, I suppress the setting at this moment. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3139542..396ae0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -58,6 +58,7 @@ jobs: - {compiler: '3.9', standard: '20'} - {compiler: '4.0', standard: '20'} - {compiler: '5.0', standard: '20'} + - {compiler: '6.0', standard: '20'} steps: - name: Checkout uses: actions/checkout@v2