From f2ba6ac26656a5506b5283e810dc062a0d01563e Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Thu, 21 Mar 2024 10:12:06 +0100 Subject: [PATCH] CI: test clang 18 (#274) --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 74d0271e..3724174f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -14,7 +14,7 @@ jobs: container: ghcr.io/gridtools/gridtools-base:${{ matrix.compiler }} strategy: matrix: - compiler: [gcc-8, gcc-10, gcc-11, gcc-12, gcc-13, clang-10, clang-15, clang-16, clang-17] + compiler: [gcc-8, gcc-10, gcc-11, gcc-12, gcc-13, clang-10, clang-15, clang-16, clang-17, clang-18] build_type: [Debug, Release] exclude: - compiler: gcc-10 @@ -29,6 +29,8 @@ jobs: build_type: Debug - compiler: clang-15 build_type: Debug + - compiler: clang-16 + build_type: Debug steps: - uses: actions/checkout@v1