diff options
author | Brad King <brad.king@kitware.com> | 2023-11-29 12:48:44 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-11-29 12:49:04 (GMT) |
commit | 27a8bc0c5afff98ab6d54925fa86e336b0249881 (patch) | |
tree | 79a2e7b7527ccdb4c2a456035bfeb854ce435f76 | |
parent | 3a1af958ee35c476b93c2003c2eebf5d2cc280ab (diff) | |
parent | 617357359d999f50bf8defa0952ad3bb67bda10e (diff) | |
download | CMake-27a8bc0c5afff98ab6d54925fa86e336b0249881.zip CMake-27a8bc0c5afff98ab6d54925fa86e336b0249881.tar.gz CMake-27a8bc0c5afff98ab6d54925fa86e336b0249881.tar.bz2 |
Merge topic 'ci-intel-compiler'
617357359d gitlab-ci: add job testing Intel oneAPI 2024.0.0 compilers on Linux
393d7fa59c gitlab-ci: add jobs testing Intel 2023.2.1 compilers on Linux
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9009
-rw-r--r-- | .gitlab-ci.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b8bb4ab..21eaa6f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -754,6 +754,13 @@ t:intel2021.9.0-makefiles: CMAKE_CI_BUILD_NAME: intel2021.9.0_makefiles CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2023.1.0-el8 +t:intel2021.10.0-makefiles: + extends: + - .cmake_test_linux_intelclassic_makefiles + variables: + CMAKE_CI_BUILD_NAME: intel2021.10.0_makefiles + CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2023.2.1-el8 + t:oneapi2021.1.1-makefiles: extends: - .cmake_test_linux_inteloneapi_makefiles @@ -824,6 +831,20 @@ t:oneapi2023.1.0-makefiles: CMAKE_CI_BUILD_NAME: oneapi2023.1.0_makefiles CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2023.1.0-el8 +t:oneapi2023.2.0-makefiles: + extends: + - .cmake_test_linux_inteloneapi_makefiles + variables: + CMAKE_CI_BUILD_NAME: oneapi2023.2.1_makefiles + CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2023.2.1-el8 + +t:oneapi2024.0.0-makefiles: + extends: + - .cmake_test_linux_inteloneapi_makefiles + variables: + CMAKE_CI_BUILD_NAME: oneapi2024.0.0_makefiles + CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2024.0.0-el8 + b:linux-x86_64-package: extends: - .linux_package |