From 29e45a94b0067d96166d2b409e141c7b1be6ee25 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 3 Oct 2022 17:02:35 -0400 Subject: Tests: Teach RunCMake to ignore Intel Classic compiler deprecation warnings --- Tests/RunCMake/RunCMake.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/RunCMake/RunCMake.cmake b/Tests/RunCMake/RunCMake.cmake index c329b46..ba9cc3b 100644 --- a/Tests/RunCMake/RunCMake.cmake +++ b/Tests/RunCMake/RunCMake.cmake @@ -164,6 +164,7 @@ function(run_cmake test) "|Your license to use PGI[^\n]*expired" "|Please obtain a new version at" "|contact PGI Sales at" + "|icp?c: remark #10441: The Intel\\(R\\) C\\+\\+ Compiler Classic \\(ICC\\) is deprecated" "|[^\n]*install_name_tool: warning: changes being made to the file will invalidate the code signature in:" "|[^\n]*xcodebuild[^\n]*DVTPlugInManager" -- cgit v0.12 From f391c1c269729e83dd0ea0ddd7f8dc5b9d909e17 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 3 Oct 2022 16:36:24 -0400 Subject: gitlab-ci: add jobs testing Intel 2022.2.0 compilers on Linux Note that the classic compiler version is 2021.7.0, but we still have it in the 2022.2.0 base image. --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fa11b15..0e5824d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -591,6 +591,13 @@ t:intel2021.6.0-makefiles: CMAKE_CI_BUILD_NAME: intel2021.6.0_makefiles CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2022.1.0-el8 +t:intel2021.7.0-makefiles: + extends: + - .cmake_test_linux_intelclassic_makefiles + variables: + CMAKE_CI_BUILD_NAME: intel2021.7.0_makefiles + CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2022.2.0-el8 + t:oneapi2021.1.1-makefiles: extends: - .cmake_test_linux_inteloneapi_makefiles @@ -640,6 +647,13 @@ t:oneapi2022.1.0-makefiles: CMAKE_CI_BUILD_NAME: oneapi2022.1.0_makefiles CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2022.1.0-el8 +t:oneapi2022.2.0-makefiles: + extends: + - .cmake_test_linux_inteloneapi_makefiles + variables: + CMAKE_CI_BUILD_NAME: oneapi2022.2.0_makefiles + CMAKE_CI_INTELCOMPILER_IMAGE_TAG: 2022.2.0-el8 + b:linux-x86_64-package: extends: - .linux_package -- cgit v0.12