Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions .github/workflows/ci.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,23 @@ jobs:
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
with:
image: rockylinux:8
dpcpp-version: intel/2025.2
dpcpp-version: intel/2025.3
cmd: |
export CC=icx
export CXX=icpx
export LDFLAGS="-static-intel"
.github/scripts/build.sh
Comment thread
johguenther marked this conversation as resolved.
artifact-out: build-rocky8-icx
artifact-path: build

build-rocky8-dpcpp:
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
with:
image: rockylinux:8
dpcpp-version: intel-llvm/v7.0.0
cmd: |
.github/scripts/build.sh
artifact-out: build-rocky8-dpcpp
artifact-path: build

build-rocky9:
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
with:
Expand Down Expand Up @@ -129,6 +137,15 @@ jobs:
./build/rkcommon_test_suite
artifact-in: build-rocky8-icx

test-rocky8-dpcpp:
needs: build-rocky8-dpcpp
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
with:
image: rockylinux:8
cmd: |
./build/rkcommon_test_suite
artifact-in: build-rocky8-dpcpp

test-rocky9:
needs: build-rocky9
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/ci.windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,6 @@ jobs:

## Build Jobs ##

build-windows-msvc15:
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
with:
cmd: |
.github\scripts\build.ps1 "Visual Studio 15 2017 Win64"
artifact-out: build-windows-msvc15
artifact-path: build

build-windows-msvc16:
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
with:
Expand All @@ -43,14 +35,6 @@ jobs:

## Functional Test Jobs ##

test-windows-msvc15:
needs: build-windows-msvc15
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
with:
cmd: |
.github\scripts\run_tests.ps1
artifact-in: build-windows-msvc15

test-windows-msvc16:
needs: build-windows-msvc16
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)

## Establish project ##

project(rkcommon VERSION 1.15.2 LANGUAGES CXX)
project(rkcommon VERSION 1.15.3 LANGUAGES CXX)

include(GNUInstallDirs)

Expand Down
3 changes: 3 additions & 0 deletions cmake/rkcommon_macros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ macro(rkcommon_configure_compiler)
elseif(RKCOMMON_COMPILER_DPCPP)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /Qoption,link,/DEPENDENTLOADFLAG:0x2000")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /Qoption,link,/DEPENDENTLOADFLAG:0x2000")
elseif(RKCOMMON_COMPILER_CLANG) # e.g. DPC++ used via clang++
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Xlinker /DEPENDENTLOADFLAG:0x2000")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Xlinker /DEPENDENTLOADFLAG:0x2000")
else()
message(WARNING "Unrecognized WIN32 compiler, DEPENDENTLOADFLAG can't be set")
endif()
Expand Down
Loading