mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-05 11:09:37 -06:00
Delete Jenkins workspace after each run to save storage space
This commit is contained in:
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@@ -95,7 +95,8 @@ parallel tools: {
|
||||
tool: cppCheck()
|
||||
)
|
||||
}
|
||||
}
|
||||
cleanWs()
|
||||
} // node('tools')
|
||||
},
|
||||
linux_gcc: {
|
||||
node('linux' && 'gcc') {
|
||||
@@ -119,6 +120,7 @@ linux_gcc: {
|
||||
stage('linux-gcc/test') {
|
||||
// testHelper.runUnitTests('build/OpenSpaceTest');
|
||||
}
|
||||
cleanWs()
|
||||
} // node('linux')
|
||||
},
|
||||
linux_clang: {
|
||||
@@ -143,6 +145,7 @@ linux_clang: {
|
||||
stage('linux-clang/test') {
|
||||
// testHelper.runUnitTests('build/OpenSpaceTest');
|
||||
}
|
||||
cleanWs()
|
||||
} // node('linux')
|
||||
},
|
||||
windows: {
|
||||
@@ -164,7 +167,8 @@ windows: {
|
||||
// testHelper.runUnitTests('bin\\Debug\\OpenSpaceTest')
|
||||
}
|
||||
} // node('windows')
|
||||
}
|
||||
cleanWs()
|
||||
} // node('windows')
|
||||
},
|
||||
macos: {
|
||||
node('macos') {
|
||||
@@ -182,5 +186,6 @@ macos: {
|
||||
// Currently, the unit tests are crashing on OS X
|
||||
// testHelper.runUnitTests('build/Debug/OpenSpaceTest')
|
||||
}
|
||||
} // node('osx')
|
||||
cleanWs()
|
||||
} // node('macos')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user