diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b9e06670..8d8349f6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -14,17 +14,23 @@ jobs: container: ghcr.io/gridtools/gridtools-base:${{ matrix.compiler }} strategy: matrix: - compiler: [gcc-8, gcc-10, gcc-11, gcc-12, clang-10, clang-14, clang-15] + 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 build_type: Debug - compiler: gcc-11 build_type: Debug + - compiler: gcc-12 + build_type: Debug - compiler: clang-10 build_type: Debug - compiler: clang-14 build_type: Debug + - compiler: clang-15 + build_type: Debug + - compiler: clang-16 + build_type: Debug steps: - uses: actions/checkout@v1