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 8ff38dc commit 51405b6Copy full SHA for 51405b6
pipeline.groovy
@@ -1,13 +1,13 @@
1
-def execute(agent)
+def execute(agent, config)
2
{
3
stage("CMake")
4
5
agent.execute("cmake -DNBL_UPDATE_GIT_SUBMODULE=OFF -DNBL_COMPILE_WITH_CUDA:BOOL=OFF -DNBL_BUILD_OPTIX:BOOL=OFF -DNBL_BUILD_MITSUBA_LOADER:BOOL=OFF -DNBL_BUILD_RADEON_RAYS:BOOL=OFF -DNBL_RUN_TESTS:BOOL=ON -S ./ -B ./build -T v143")
6
}
7
8
- stage("Compile Nabla with ${params.NBL_CI_CONFIG} configuration")
+ stage("Compile Nabla with ${config} configuration")
9
10
- agent.execute("cmake --build ./build --target Nabla --config ${params.NBL_CI_CONFIG} -j12 -v")
+ agent.execute("cmake --build ./build --target Nabla --config ${config} -j12 -v")
11
12
13
0 commit comments