Skip to content

Commit

Permalink
ci: test with oldest and latest compilers. test with default compiler…
Browse files Browse the repository at this point in the history
…s on ubuntu lts version.
  • Loading branch information
marenz2569 committed Dec 5, 2024
1 parent 07c9713 commit 7daf0f8
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,6 @@ jobs:
- name: UnInstall CUDA runtime (if needed)
run: |
sudo rm -rf ${CUDA_ROOT}
- name: UnInstall clang++-10
run: |
sudo apt remove clang-10
sudo apt autoremove
build-linux:
Expand All @@ -264,10 +260,10 @@ jobs:
matrix:
include:
# Oldest supported compiler on older Ubuntu
- { os: ubuntu-20.04, compiler: gcc-7, cxxcompiler: g++-7 }
- { os: ubuntu-20.04, compiler: clang-9, cxxcompiler: clang++-9 }
- { os: ubuntu-20.04, compiler: gcc-7, cxxcompiler: g++-7 }
- { os: ubuntu-20.04, compiler: clang-9, cxxcompiler: clang++-9 }
# Latest compiler on latest Ubuntu
- { os: ubuntu-24.04, compiler: gcc-14, cxxcompiler: g++-14 }
- { os: ubuntu-24.04, compiler: gcc-14, cxxcompiler: g++-14 }
- { os: ubuntu-24.04, compiler: clang-19, cxxcompiler: clang++-19 }
# Default compilers on all ubuntu
- { os: ubuntu-20.04, compiler: default }
Expand Down Expand Up @@ -334,8 +330,8 @@ jobs:
matrix:
os: [windows-2019]
cfg:
- { CUDA: '0', ONEAPI: '0', MSVC: true }
- { CUDA: '0', ONEAPI: '0', MSVC: false }
- { CUDA: '0', MSVC: true }
- { CUDA: '0', MSVC: false }
- { CUDA: '11.0', MSVC: true }

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 7daf0f8

Please sign in to comment.