Skip to content

Commit 51405b6

Browse files
authored
Update pipeline.groovy
1 parent 8ff38dc commit 51405b6

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 @@
1-
def execute(agent)
1+
def execute(agent, config)
22
{
33
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 with ${params.NBL_CI_CONFIG} configuration")
8+
stage("Compile Nabla with ${config} configuration")
99
{
10-
agent.execute("cmake --build ./build --target Nabla --config ${params.NBL_CI_CONFIG} -j12 -v")
10+
agent.execute("cmake --build ./build --target Nabla --config ${config} -j12 -v")
1111
}
1212
}
1313

0 commit comments

Comments
 (0)