ci: avoid clang-9 + C++20 because it lacks <=>

And the operator<=> is used in the (GNU-) standard library
implementation installed by default.
Note: consider using libc++ library
This commit is contained in:
ToruNiina
2021-05-14 16:16:23 +09:00
parent 0ac3919e08
commit 07c1d10212

View File

@@ -59,6 +59,7 @@ jobs:
- {compiler: '6.0', standard: '20'}
- {compiler: '7', standard: '20'}
- {compiler: '8', standard: '20'}
- {compiler: '9', standard: '20'}
steps:
- name: Checkout
uses: actions/checkout@v2