From 72789e256e34d7c34fcf5a756a578056cc3459ec Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Sun, 4 Feb 2024 23:19:47 +0100 Subject: [PATCH] WIP --- .github/workflows/linux.yml | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 935af4e..a05356a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -12,20 +12,29 @@ jobs: - 14 - 17 - 2a - include: + stdlib: + - libc++ + - libstdc++ + compiler: + - g++-10 + - g++-11 + - g++-12 + - g++-13 + - clang++-13 + - clang++-14 + - clang++-15 + exclude: - compiler: g++-10 - stdlib: libstdc++ + stdlib: libc++ - compiler: g++-11 - stdlib: libstdc++ + stdlib: libc++ - compiler: g++-12 - stdlib: libstdc++ + stdlib: libc++ - compiler: g++-13 - stdlib: libstdc++ - - compiler: clang++-13 stdlib: libc++ + - compiler: clang++-13 + stdlib: libstdc++ - compiler: clang++-14 - stdlib: libc++ - - compiler: clang++-15 stdlib: libstdc++ steps: - name: Checkout