mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-13 06:49:05 -05:00
Jenkins compile fix
Remove fresh recompile
This commit is contained in:
Vendored
-3
@@ -27,7 +27,6 @@ stage('Build') {
|
||||
parallel linux: {
|
||||
node('linux') {
|
||||
timeout(time: 30, unit: 'MINUTES') {
|
||||
deleteDir()
|
||||
checkout scm
|
||||
sh 'git submodule update --init --recursive'
|
||||
sh '''
|
||||
@@ -43,7 +42,6 @@ stage('Build') {
|
||||
windows: {
|
||||
node('windows') {
|
||||
timeout(time: 30, unit: 'MINUTES') {
|
||||
deleteDir()
|
||||
checkout scm
|
||||
bat '''
|
||||
git submodule update --init --recursive
|
||||
@@ -59,7 +57,6 @@ stage('Build') {
|
||||
osx: {
|
||||
node('osx') {
|
||||
timeout(time: 30, unit: 'MINUTES') {
|
||||
deleteDir()
|
||||
checkout scm
|
||||
sh 'git submodule update --init --recursive'
|
||||
sh '''
|
||||
|
||||
@@ -119,7 +119,7 @@ RenderableModelProjection::RenderableModelProjection(const ghoul::Dictionary& di
|
||||
);
|
||||
|
||||
std::string name;
|
||||
dictionary.getValue(SceneGraphNode::KeyName, name);
|
||||
[[maybe_unused]] bool success = dictionary.getValue(SceneGraphNode::KeyName, name);
|
||||
ghoul_assert(success, "Name was not passed to RenderableModelProjection");
|
||||
|
||||
using ghoul::Dictionary;
|
||||
|
||||
Reference in New Issue
Block a user