Skip to content

Commit 8ff38dc

Browse files
authored
Update pipeline.groovy with NBL_CI_CONFIG parameter
1 parent 547586e commit 8ff38dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pipeline.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
def execute(agent)
22
{
3-
stage('CMake')
3+
stage("CMake")
44
{
55
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")
66
}
77

8-
stage('Compile Nabla')
8+
stage("Compile Nabla with ${params.NBL_CI_CONFIG} configuration")
99
{
10-
agent.execute("cmake --build ./build --target Nabla --config Release -j12 -v")
10+
agent.execute("cmake --build ./build --target Nabla --config ${params.NBL_CI_CONFIG} -j12 -v")
1111
}
1212
}
1313

0 commit comments

Comments
 (0)