We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ea87b commit ae4c185Copy full SHA for ae4c185
1 file changed
.github/workflows/public.continuous.yml
@@ -133,3 +133,22 @@ jobs:
133
cmake -B build -G "Visual Studio 17 2022" -A ARM64 $opts.Split(" ") .
134
cmake --build build --config Release
135
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