forked from OpenSpace/Spice
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
120 lines (118 loc) · 3.15 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
library('sharedSpace'); // jenkins-pipeline-lib
def url = 'https://github.com/OpenSpace/Spice';
def branch = env.BRANCH_NAME;
//
// Pipeline start
//
parallel linux_gcc_make: {
if (env.USE_BUILD_OS_LINUX == 'true') {
node('linux-gcc') {
stage('linux-gcc-make/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('linux-gcc-make/build') {
compileHelper.build(compileHelper.Make(), compileHelper.Gcc(), '', '', 'build-make');
}
cleanWs()
} // node('linux')
}
},
linux_gcc_ninja: {
if (env.USE_BUILD_OS_LINUX == 'true') {
node('linux-gcc') {
stage('linux-gcc-ninja/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('linux-gcc-ninja/build') {
compileHelper.build(compileHelper.Ninja(), compileHelper.Gcc(), '', '', 'build-ninja');
}
cleanWs()
} // node('linux')
}
},
linux_clang_make: {
if (env.USE_BUILD_OS_LINUX == 'true') {
node('linux-clang') {
stage('linux-clang-make/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('linux-clang-make/build') {
compileHelper.build(compileHelper.Make(), compileHelper.Clang(), '', '', 'build-make');
}
cleanWs()
} // node('linux')
}
},
linux_clang_ninja: {
if (env.USE_BUILD_OS_LINUX == 'true') {
node('linux-clang') {
stage('linux-clang-ninja/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('linux-clang-ninja/build') {
compileHelper.build(compileHelper.Ninja(), compileHelper.Clang(), '', '', 'build-ninja');
}
cleanWs()
} // node('linux')
}
},
windows_msvc: {
if (env.USE_BUILD_OS_WINDOWS == 'true') {
node('windows') {
stage('windows-msvc/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('windows-msvc/build') {
compileHelper.build(compileHelper.VisualStudio(), compileHelper.VisualStudio(), '', '', 'build-msvc');
}
cleanWs()
} // node('windows')
}
},
windows_ninja: {
if (env.USE_BUILD_OS_WINDOWS == 'true') {
node('windows') {
stage('windows-ninja/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('windows-ninja/build') {
compileHelper.build(compileHelper.Ninja(), compileHelper.VisualStudio(), '', '', 'build-ninja');
}
cleanWs()
} // node('windows')
}
},
macos_make: {
if (env.USE_BUILD_OS_MACOS == 'true') {
node('macos') {
stage('macos-make/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('macos-make/build') {
compileHelper.build(compileHelper.Make(), compileHelper.Clang(), '', '', 'build-make');
}
cleanWs()
} // node('osx')
}
},
macos_ninja: {
if (env.USE_BUILD_OS_MACOS == 'true') {
node('macos') {
stage('macos-xcode/scm') {
deleteDir();
gitHelper.checkoutGit(url, branch);
}
stage('macos-xcode/build') {
compileHelper.build(compileHelper.Xcode(), compileHelper.Xcode(), '', '', 'build-xcode');
}
cleanWs()
} // node('osx')
}
}