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 41ab245 commit 258f364Copy full SHA for 258f364
Jenkinsfile
@@ -0,0 +1,11 @@
1
+stage('CMake')
2
+{
3
+ bat returnStatus: true, script: "cmake -DNBL_COMPILE_WITH_CUDA:BOOL=ON -DNBL_BUILD_OPTIX:BOOL=ON -DNBL_BUILD_MITSUBA_LOADER:BOOL=ON -DNBL_BUILD_RADEON_RAYS:BOOL=ON -DNBL_RUN_TESTS:BOOL=ON -S ./ -B ./build -T v143"
4
+ bat "git -C ./3rdparty/gli reset --hard" // due to gli build system bug
5
+ bat "cmake -DNBL_COMPILE_WITH_CUDA:BOOL=ON -DNBL_BUILD_OPTIX:BOOL=ON -DNBL_BUILD_MITSUBA_LOADER:BOOL=ON -DNBL_BUILD_RADEON_RAYS:BOOL=ON -DNBL_RUN_TESTS:BOOL=ON -S ./ -B ./build -T v143"
6
+}
7
+
8
+stage('Compile Nabla')
9
10
+ bat "cmake --build ./build --target Nabla --config Release -j12 -v"
11
0 commit comments