Skip to content

Commit a85d00e

Browse files
authored
Merge pull request #491 from Devsh-Graphics-Programming/hostTest
CI Host Test
2 parents d743059 + fa70781 commit a85d00e

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2018-2020 - DevSH Graphics Programming Sp. z O.O.
22
# This file is part of the "Nabla Engine".
33
# For conditions of distribution and use, see copyright notice in nabla.h.in or nabla.h
4-
4+
#
55
cmake_minimum_required(VERSION 3.25)
66
#policies
77
cmake_policy(SET CMP0112 NEW)

Jenkinsfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

pipeline.groovy

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
def execute(agent)
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')
9+
{
10+
agent.execute("cmake --build ./build --target Nabla --config Release -j12 -v")
11+
}
12+
}
13+
14+
return this

0 commit comments

Comments
 (0)