Jenkins compile fix

This commit is contained in:
Alexander Bock
2017-07-26 18:15:40 -04:00
parent 0b30a9e244
commit 14b4f5c1f0
2 changed files with 4 additions and 1 deletions
Vendored
+3
View File
@@ -27,6 +27,7 @@ stage('Build') {
parallel linux: {
node('linux') {
timeout(time: 30, unit: 'MINUTES') {
deleteDir()
checkout scm
sh 'git submodule update --init --recursive'
sh '''
@@ -42,6 +43,7 @@ stage('Build') {
windows: {
node('windows') {
timeout(time: 30, unit: 'MINUTES') {
deleteDir()
checkout scm
bat '''
git submodule update --init --recursive
@@ -57,6 +59,7 @@ stage('Build') {
osx: {
node('osx') {
timeout(time: 30, unit: 'MINUTES') {
deleteDir()
checkout scm
sh 'git submodule update --init --recursive'
sh '''
@@ -40,7 +40,7 @@
* @} @}
*/
#include <openspace/properties/numericalproperty.h>
#include <openspace/properties/templateproperty.h>
namespace openspace::properties {