Jenkins compile fix

Remove fresh recompile
This commit is contained in:
Alexander Bock
2017-07-18 17:59:20 -04:00
parent df3cabb455
commit 5cf85bfd44
2 changed files with 1 additions and 4 deletions
Vendored
-3
View File
@@ -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;