From 704ac2291d8751d7f6c708523d7d0381607a9eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Mon, 10 Nov 2025 16:31:22 +0100 Subject: [PATCH 1/3] CI: Bump icx to 2025.2 --- .github/workflows/ci.linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.linux.yml b/.github/workflows/ci.linux.yml index 5b70df7..31d10b9 100644 --- a/.github/workflows/ci.linux.yml +++ b/.github/workflows/ci.linux.yml @@ -30,7 +30,7 @@ jobs: uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main with: image: rockylinux:8 - dpcpp-version: intel/2025.1 + dpcpp-version: intel/2025.2 cmd: | export CC=icx export CXX=icpx From 8e37e9adee4cf3c5fb2340347b5619ad88511623 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Mon, 10 Nov 2025 16:31:36 +0100 Subject: [PATCH 2/3] Fix missing find_dependency() with some CMake versions --- cmake/rkcommon_macros.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/rkcommon_macros.cmake b/cmake/rkcommon_macros.cmake index 4207e75..042b509 100644 --- a/cmake/rkcommon_macros.cmake +++ b/cmake/rkcommon_macros.cmake @@ -142,6 +142,8 @@ macro(rkcommon_configure_tasking_system) endif() endmacro() +include(CMakeFindDependencyMacro) + macro(rkcommon_create_tasking_target FROM_INSTALL) set(CMAKE_THREAD_PREFER_PTHREAD TRUE) set(THREADS_PREFER_PTHREAD_FLAG TRUE) From 9f1137b3413676b72e0cdd99782592c24f7d3430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCnther?= Date: Mon, 10 Nov 2025 16:32:57 +0100 Subject: [PATCH 3/3] Version bump to 1.15.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5453b35..ec043e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ set(CMAKE_DISABLE_IN_SOURCE_BUILD ON) ## Establish project ## -project(rkcommon VERSION 1.15.0 LANGUAGES CXX) +project(rkcommon VERSION 1.15.1 LANGUAGES CXX) include(GNUInstallDirs)