-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathJenkinsfile
100 lines (99 loc) · 4.3 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
def groovyScript
def os
pipeline {
//agent { label 'CROSS-PLATFORM' }
agent {
node {
label 'CROSS-PLATFORM'
}
}
parameters {
booleanParam(name: "RELEASE", defaultValue: false)
}
stages {
stage("Init") {
steps {
script {
groovyScript = load "build.groovy"
os = groovyScript.findOS()
echo 'Building the application...'
}
}
}
stage("Build") {
parallel {
stage("Debug") {
when { expression { !params.RELEASE } }
steps {
script {
// If operating system is macOS
if(os.equalsIgnoreCase("macOS")) {
sh 'chmod +x build.sh'
sh './build.sh Debug'
archiveArtifacts artifacts: 'build/macOS/source/App/*', fingerprint: true
} else if(os.equalsIgnoreCase("Windows32")) {
// Perform Windows related build task
bat "build.bat Debug"
archiveArtifacts artifacts: 'build/Windows/Win32/source/App/*', fingerprint: true
} else if(os.equalsIgnoreCase("Windows64")) {
// Perform Windows related build task
bat "build.bat Debug"
archiveArtifacts artifacts: 'build/Windows/Win64/source/App/*', fingerprint: true
} else {
// Perform Linux related build task
sh 'chmod +x build.sh'
sh './build.sh Debug'
archiveArtifacts artifacts: 'build/Linux/aarch64/source/App/*', fingerprint: true
}
}
}
}
stage("Release") {
when { expression { params.RELEASE } }
steps {
script {
// If operating system is macOS
if(os.equalsIgnoreCase("macOS")) {
sh 'chmod +x build.sh'
sh './build.sh Release'
archiveArtifacts artifacts: 'build/macOS/source/App/*', fingerprint: true
} else if(os.equalsIgnoreCase("Windows32")) {
// Perform Windows-32Bit related build task
bat "build.bat Release"
archiveArtifacts artifacts: 'build/Windows/Win32/source/App/*', fingerprint: true
} else if(os.equalsIgnoreCase("Windows64")) {
// Perform Windows-64Bit related build task
bat "build.bat Release"
archiveArtifacts artifacts: 'build/Windows/Win64/source/App/*', fingerprint: true
} else {
// Perform Linux related build task
sh 'chmod +x build.sh'
sh './build.sh Release'
archiveArtifacts artifacts: 'build/Linux/aarch64/source/App/*', fingerprint: true
}
}
}
}
}
}
stage("Test") {
steps {
script {
echo 'Running the application...'
// If operating system is macOS
if(os.equalsIgnoreCase("macOS")) {
sh 'chmod +x run.sh'
sh './run.sh'
} else if(os.equalsIgnoreCase("Windows32") || os.equalsIgnoreCase("Windows64")) {
// Perform Windows related test task
bat "run.bat"
} else {
// Perform Linux related test task
sh 'chmod +x run.sh'
sh './run.sh'
}
}
}
}
}
}