diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 235bcc8abf..444a7fbe96 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -449,6 +449,32 @@ jobs: cmake --preset windows-DG2-JIT-INTERNAL-L0RTAS -DCMAKE_BUILD_TYPE=Release -DEMBREE_TESTING_INTENSITY=3 cmake --build build --config Release --target test_package + nightly-windows-DG2-MULTILEVEL-build: + secrets: inherit + uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main + with: + runs-on: '[ "Windows", "NAS", "dg2" ]' + project: embree + env-from-files: ./.github/workflows/dpcpp-sycl-nightly.env ./.github/workflows/gfx-windows-public.env + artifact-out: nightly-windows-DG2-MULTILEVEL-build + artifact-path: ./build/*.zip + cmd: | + cmake --preset nightly-windows-DG2-MULTILEVEL -DCMAKE_BUILD_TYPE=Release -DEMBREE_TESTING_INTENSITY=2 + cmake --build build --config Release --target build + + nightly-windows-DG2-MULTILEVEL-test: + secrets: inherit + uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main + needs: ["nightly-windows-DG2-MULTILEVEL-build"] + with: + runs-on: '[ "Windows", "NAS", "dg2" ]' + project: embree + env-from-files: ./.github/workflows/dpcpp-sycl-nightly.env ./.github/workflows/gfx-windows-public.env + artifact-in: nightly-windows-DG2-MULTILEVEL-build + cmd: | + cmake --preset nightly-windows-DG2-MULTILEVEL -DCMAKE_BUILD_TYPE=Release -DEMBREE_TESTING_INTENSITY=2 + cmake --build build --config Release --target test_package + ################################################################################ ################################################################################ # CPU tests diff --git a/scripts/cmake-presets/nightly.json b/scripts/cmake-presets/nightly.json index b2574dd63d..c493884795 100644 --- a/scripts/cmake-presets/nightly.json +++ b/scripts/cmake-presets/nightly.json @@ -46,6 +46,18 @@ "EMBREE_MAX_ISA": "SSE2" } }, + { + "name": "nightly-windows-DG2-MULTILEVEL", + "inherits": ["package-windows", "env", "dpcpp-windows", "ispc_NEWEST", "tbb_NEWEST"], + "cacheVariables": { + "CMAKE_BUILD_TYPE": "RelWithDebInfo", + "EMBREE_SYCL_SUPPORT": "ON", + "EMBREE_SYCL_L0_RTAS_BUILDER" : "OFF", + "EMBREE_SYCL_AOT_DEVICES": "none", + "EMBREE_MAX_ISA": "SSE2", + "EMBREE_MAX_INSTANCE_LEVEL_COUNT": "2" + } + }, { "name": "nightly-windows-DG2-JIT", "inherits": ["package-windows", "env", "dpcpp-windows", "ispc_NEWEST", "tbb_NEWEST"],