We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d18c171 + b656c40 commit f7e49f3Copy full SHA for f7e49f3
2 files changed
Jenkinsfile
@@ -1,5 +1,8 @@
1
import groovy.io.FileType
2
3
+//Immediate return statement to prevent running builds
4
+return;
5
+
6
library('sharedSpace'); // jenkins-pipeline-lib
7
8
def url = 'https://github.com/OpenSpace/OpenSpace';
@@ -43,6 +46,8 @@ def moduleCMakeFlags() {
43
46
parallel linux_gcc_make: {
44
47
if (env.USE_BUILD_OS_LINUX == 'true') {
45
48
node('linux-visual') {
49
+ // Just do an early return for now; this groovy script is not currently used
50
+ return;
51
stage('linux-gcc-make/scm') {
52
deleteDir();
53
gitHelper.checkoutGit(url, branch);
OpenSpaceVisualTesting/log/testLog.txt
@@ -0,0 +1 @@
+Messages from most recent test are logged here
0 commit comments