Skip to content

Commit

Permalink
Update pipeline.groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastaZIuk authored May 27, 2023
1 parent 8ff38dc commit 51405b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipeline.groovy
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
def execute(agent)
def execute(agent, config)
{
stage("CMake")
{
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")
}

stage("Compile Nabla with ${params.NBL_CI_CONFIG} configuration")
stage("Compile Nabla with ${config} configuration")
{
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")
}
}

Expand Down

0 comments on commit 51405b6

Please sign in to comment.