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 547586e commit 8ff38dcCopy full SHA for 8ff38dc
pipeline.groovy
@@ -1,13 +1,13 @@
1
def execute(agent)
2
{
3
- stage('CMake')
+ 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')
+ stage("Compile Nabla with ${params.NBL_CI_CONFIG} configuration")
9
10
- agent.execute("cmake --build ./build --target Nabla --config Release -j12 -v")
+ agent.execute("cmake --build ./build --target Nabla --config ${params.NBL_CI_CONFIG} -j12 -v")
11
12
13
0 commit comments