diff options
author | Brad King <brad.king@kitware.com> | 2024-04-24 19:06:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-04-24 20:41:52 (GMT) |
commit | 3a44b8dfc0697cf0e72aa370a15e8fadcf81da6c (patch) | |
tree | 0b034e80c8db66287a271d75c682683a26fa4ebc | |
parent | d909ea2ed8e37bda69a8e33931992e35b9b75895 (diff) | |
download | CMake-3a44b8dfc0697cf0e72aa370a15e8fadcf81da6c.zip CMake-3a44b8dfc0697cf0e72aa370a15e8fadcf81da6c.tar.gz CMake-3a44b8dfc0697cf0e72aa370a15e8fadcf81da6c.tar.bz2 |
ci: Move job for HIP tests on Fedora 39 to a dedicated base image
The ROCm 6 HIP packages on Fedora 40 do not seem to fully
work for our test suite in CI jobs. Use a dedicated image
to run our HIP tests on Fedora 39 so that the rest of our
Fedora jobs can be moved to Fedora 40 later.
Issue: #25932
-rw-r--r-- | .gitlab/os-linux.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.gitlab/os-linux.yml b/.gitlab/os-linux.yml index 03778c2..de1d64b 100644 --- a/.gitlab/os-linux.yml +++ b/.gitlab/os-linux.yml @@ -75,6 +75,13 @@ GIT_CLONE_PATH: "$CI_BUILDS_DIR/cmake ci/long file name for testing purposes" CMAKE_ARCH: x86_64 +.fedora39_hip: + image: "kitware/cmake:ci-fedora39-hip-x86_64-2024-04-24" + + variables: + GIT_CLONE_PATH: "$CI_BUILDS_DIR/cmake ci" + CMAKE_ARCH: x86_64 + #### Lint builds .fedora39_tidy: @@ -410,7 +417,7 @@ CTEST_LABELS: "HIP" .fedora39_hip_radeon: - extends: .fedora39 + extends: .fedora39_hip variables: CMAKE_CONFIGURATION: fedora39_hip_radeon |