Skip to content

Commit ae4c185

Browse files
committed
Added regular windows to CI
1 parent 58ea87b commit ae4c185

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/public.continuous.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,22 @@ jobs:
133133
cmake -B build -G "Visual Studio 17 2022" -A ARM64 $opts.Split(" ") .
134134
cmake --build build --config Release
135135
ctest --test-dir build -C Release --output-on-failure
136+
137+
windows-11:
138+
runs-on: windows-latest
139+
steps:
140+
- name: Checkout Repository
141+
uses: actions/checkout@v4
142+
143+
- name: Build and Run
144+
shell: pwsh
145+
run: |
146+
$opts = "-DBUILD_TESTING=ON"
147+
$opts += " -DEMBREE_TUTORIALS=ON"
148+
$opts += " -DEMBREE_ISPC_SUPPORT=OFF"
149+
$opts += " -DEMBREE_TASKING_SYSTEM=INTERNAL"
150+
$opts += " -DEMBREE_TESTING_INTENSITY=2"
151+
152+
cmake -B build -G "Visual Studio 17 2022" $opts.Split(" ") .
153+
cmake --build build --config Release
154+
ctest --test-dir build -C Release --output-on-failure

0 commit comments

Comments
 (0)