forked from EvilBeaver/OneScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
285 lines (224 loc) · 10.4 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
pipeline {
agent none
environment {
ReleaseNumber = '1.2.0'
outputEnc = '65001'
}
stages {
stage('Windows Build') {
agent { label 'windows' }
// пути к инструментам доступны только когда
// нода уже определена
environment {
NugetPath = "${tool 'nuget'}"
OneScriptDocumenter = "${tool 'documenter'}"
StandardLibraryPacks = "${tool 'os_stdlib'}"
}
steps {
// в среде Multibranch Pipeline Jenkins первращает имена веток в папки
// а для веток Gitflow вида release/* экранирует в слэш в %2F
// При этом MSBuild, видя urlEncoding, разэкранирует его обратно, ломая путь (появляется слэш, где не надо)
//
// Поэтому, применяем костыль с кастомным workspace
// см. https://issues.jenkins-ci.org/browse/JENKINS-34564
//
// А еще Jenkins под Windows постоянно добавляет в конец папки какую-то мусорную строку.
// Для этого отсекаем все, что находится после последнего дефиса
// см. https://issues.jenkins-ci.org/browse/JENKINS-40072
ws(env.WORKSPACE.replaceAll("%", "_").replaceAll(/(-[^-]+$)/, ""))
{
step([$class: 'WsCleanup'])
checkout scm
bat 'set'
withSonarQubeEnv('silverbulleters') {
script {
def sqScannerMsBuildHome = tool 'sonar-scanner for msbuild';
sqScannerMsBuildHome = sqScannerMsBuildHome + "\\SonarScanner.MSBuild.exe";
def sonarcommandStart = "@" + sqScannerMsBuildHome + " begin /k:1script /n:OneScript /v:\"${env.ReleaseNumber}\" /d:sonar.verbose=true /d:sonar.exclusions=src/ASPNETHandler/**/*,tests/**/*";
def makeAnalyzis = false
if (env.BRANCH_NAME == "develop") {
echo 'Analysing develop branch'
} else if (env.BRANCH_NAME.startsWith("PR-")) {
// Report PR issues
def PRNumber = env.BRANCH_NAME.tokenize("PR-")[0]
def gitURLcommand = 'git config --local remote.origin.url'
def gitURL = ""
if (isUnix()) {
gitURL = sh(returnStdout: true, script: gitURLcommand).trim()
} else {
gitURL = bat(returnStdout: true, script: gitURLcommand).trim()
}
def repository = gitURL.tokenize("/")[2] + "/" + gitURL.tokenize("/")[3]
repository = repository.tokenize(".")[0]
withCredentials([string(credentialsId: 'GithubOAUTHToken_ForSonar', variable: 'githubOAuth')]) {
sonarcommandStart = sonarcommandStart + " /d:sonar.analysis.mode=issues /d:sonar.github.pullRequest=${PRNumber} /d:sonar.github.repository=${repository} /d:sonar.github.oauth=${githubOAuth}"
}
} else {
makeAnalyzis = false
}
if (makeAnalyzis) {
bat "${sonarcommandStart}"
}
bat "chcp $outputEnc > nul\r\n\"${tool 'MSBuild'}\" src/1Script.sln /t:restore"
bat "chcp $outputEnc > nul\r\n\"${tool 'MSBuild'}\" Build.csproj /t:CleanAll;PrepareDistributionContent"
if (makeAnalyzis) {
bat "${sqScannerMsBuildHome} end"
}
}
}
stash includes: 'tests, built/**', name: 'buildResults'
}
}
}
stage('VSCode debugger Build') {
agent {
docker {
image 'node'
label 'linux'
}
}
steps {
unstash 'buildResults'
sh 'npm install vsce'
script {
def vsceBin = pwd() + "/node_modules/.bin/vsce"
sh "cd built/vscode && ${vsceBin} package"
archiveArtifacts artifacts: 'built/vscode/*.vsix', fingerprint: true
stash includes: 'built/vscode/*.vsix', name: 'vsix'
}
}
}
stage('Windows testing') {
agent { label 'windows' }
steps {
ws(env.WORKSPACE.replaceAll("%", "_").replaceAll(/(-[^-]+$)/, ""))
{
dir('install/build'){
deleteDir()
}
unstash 'buildResults'
bat "chcp $outputEnc > nul\r\n\"${tool 'MSBuild'}\" Build.csproj /t:xUnitTest"
junit 'tests/tests.xml'
}
}
}
stage('Linux testing') {
agent { label 'master' }
steps {
dir('install/build'){
deleteDir()
}
unstash 'buildResults'
sh '''\
if [ ! -d lintests ]; then
mkdir lintests
fi
rm lintests/*.xml -f
cd tests
mono ../built/tmp/bin/oscript.exe testrunner.os -runall . xddReportPath ../lintests || true
exit 0
'''.stripIndent()
junit 'lintests/*.xml'
archiveArtifacts artifacts: 'lintests/*.xml', fingerprint: true
}
}
stage('Packaging') {
agent { label 'windows' }
environment {
InnoSetupPath = "${tool 'InnoSetup'}"
}
steps {
ws(env.WORKSPACE.replaceAll("%", "_").replaceAll(/(-[^-]+$)/, ""))
{
dir('built'){
deleteDir()
}
unstash 'buildResults'
script
{
if (env.BRANCH_NAME == "preview") {
echo 'Building preview'
bat "chcp $outputEnc > nul\r\n\"${tool 'MSBuild'}\" Build.csproj /t:CreateDistributions /p:Suffix=-pre%BUILD_NUMBER%"
}
else{
bat "chcp $outputEnc > nul\r\n\"${tool 'MSBuild'}\" Build.csproj /t:CreateDistributions"
}
}
archiveArtifacts artifacts: 'built/**', fingerprint: true
stash includes: 'built/**', name: 'winDist'
}
}
}
stage ('Packaging DEB and RPM') {
agent { label 'master' }
steps {
dir('built'){
deleteDir()
}
checkout scm
unstash 'buildResults'
sh '''
cd install
chmod +x prepare-build.sh
chmod +x deb-build.sh
chmod +x rpm-build.sh
sh ./prepare-build.sh
DISTPATH=`pwd`/built/tmp
sh ./deb-build.sh $DISTPATH
sh ./rpm-build.sh $DISTPATH
'''.stripIndent()
archiveArtifacts artifacts: 'output/*', fingerprint: true
stash includes: 'output/*', name: 'linDist'
}
}
stage ('Publishing night-build') {
when { anyOf {
branch 'develop';
branch 'release/*'
}
}
agent { label 'master' }
steps {
unstash 'winDist'
unstash 'linDist'
unstash 'vsix'
sh '''
if [ -d "targetContent" ]; then
rm -rf targetContent
fi
mkdir targetContent
mv -t targetContent built/*.exe built/*.zip built/vscode/*.vsix
mv output/*.rpm targetContent/
mv output/*.deb targetContent/
TARGET="/var/www/oscript.io/download/versions/night-build/"
cd targetContent
sudo rsync -rv --delete --exclude mddoc*.zip --exclude *.src.rpm . $TARGET
rm -rf targetContent
'''.stripIndent()
}
}
stage ('Publishing master') {
when { branch 'master' }
agent { label 'master' }
steps {
unstash 'winDist'
unstash 'linDist'
unstash 'vsix'
sh """
if [ -d "targetContent" ]; then
rm -rf targetContent
fi
mkdir targetContent
mv -t targetContent built/*.exe built/*.zip built/vscode/*.vsix
mv output/*.rpm targetContent/
mv output/*.deb targetContent/
cd targetContent
TARGET="/var/www/oscript.io/download/versions/latest/"
sudo rsync -rv --delete --exclude mddoc*.zip --exclude *.src.rpm . \$TARGET
TARGET="/var/www/oscript.io/download/versions/${ReleaseNumber.replace('.', '_')}/"
sudo rsync -rv --delete --exclude mddoc*.zip --exclude *.src.rpm . \$TARGET
""".stripIndent()
}
}
}
}