Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions: Update compiler versions in configure test #1760

Merged
merged 14 commits into from
Jun 17, 2024
22 changes: 17 additions & 5 deletions .github/workflows/cmake-configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: ghcr.io/gridtools/gridtools-base:clang-${{ matrix.version }}
strategy:
matrix:
version: [9, 10]
version: [12, 16, 17, 18]
cuda-mode: [AUTO, Clang-CUDA, NVCC-CUDA]
steps:
- uses: actions/checkout@v2
Expand All @@ -38,10 +38,11 @@ jobs:

clang-cuda:
runs-on: ubuntu-latest
container: ghcr.io/gridtools/gridtools-base:clang-${{ matrix.version }}-cuda-11
container: ghcr.io/gridtools/gridtools-base:clang-${{ matrix.clang_version }}-cuda-${{ matrix.cuda_version }}
strategy:
matrix:
version: [11, 12]
clang_version: [17]
cuda_version: [12.5]
cuda-mode: [AUTO, Clang-CUDA, NVCC-CUDA]
steps:
- uses: actions/checkout@v2
Expand All @@ -62,7 +63,7 @@ jobs:
container: ghcr.io/gridtools/gridtools-base:gcc-${{ matrix.version }}
strategy:
matrix:
version: [8, 9, 10, 11]
version: [8, 11, 12, 13]
steps:
- uses: actions/checkout@v2
- name: CMake version
Expand All @@ -78,7 +79,18 @@ jobs:

gcc-nvcc:
runs-on: ubuntu-latest
container: ghcr.io/gridtools/gridtools-base:gcc-10-cuda-11
container: ghcr.io/gridtools/gridtools-base:gcc-${{ matrix.gcc_version }}-cuda-${{ matrix.cuda_version }}
strategy:
matrix:
gcc_version: [10, 11, 12]
cuda_version: [11.8, "12.0", 12.2]
exclude:
- gcc_version: 12
cuda_version: 11.8
- gcc_version: 11
cuda_version: 11.8
- gcc_version: 11
cuda_version: 12.2
steps:
- uses: actions/checkout@v2
- name: CMake version
Expand Down
Loading