-
Notifications
You must be signed in to change notification settings - Fork 22
/
Jenkinsfile_prs_javascript_lint
76 lines (71 loc) · 2.73 KB
/
Jenkinsfile_prs_javascript_lint
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
#!/usr/bin/env groovy
// Configure the build properties
properties([
buildDiscarder(logRotator(numToKeepStr: '500'))
])
pipeline {
options {
timeout(time: 30, unit: 'MINUTES')
}
parameters {
string(defaultValue: '', description: 'Gitarro PR', name: 'GITARRO_PR_NUMBER')
string(defaultValue: '', description: 'SUSE Manager PR', name: 'PR_NUMBER')
booleanParam(defaultValue: true, description: 'Clean up workspace after a successful execution.', name: 'cleanWorkspace')
}
environment {
gitarro_cmd = 'gitarro.ruby2.5'
gitarro_local = 'ruby gitarro.rb'
jslint_test = "-r SUSE/spacewalk" +
" -c javascript_lint -d \"javascript-lint\" " +
" -f \"web/\" " +
" -t susemanager-utils/testing/automation/javascript-lint.sh" +
" -u ${env.BUILD_URL} " +
" -g ${env.WORKSPACE} "
}
// run only on specific hosts
agent { label 'suse-manager-unit-tests' }
stages {
stage('Clean Up Workspace') {
steps {
echo 'Clean up previous workspace'
cleanWs()
echo 'Check out SCM'
checkout scm
script {
if (params.GITARRO_PR_NUMBER != '') {
echo 'Check out Gitarro PR'
checkout([$class : 'GitSCM', branches: [[name: "FETCH_HEAD"]],
extensions : [[$class: 'LocalBranch']],
userRemoteConfigs: [[refspec: "+refs/pull/${params.GITARRO_PR_NUMBER}/head:refs/remotes/origin/PR-${params.GITARRO_PR_NUMBER}", url: "https://[email protected]/openSUSE/gitarro"]]])
}
}
}
}
stage('Run Javascript lint test') {
steps {
echo 'Run JavaScript lint tests'
script {
jslint_test_cmd = "${gitarro_cmd} ${jslint_test}"
if (params.GITARRO_PR_NUMBER != "") {
jslint_test_cmd = "${gitarro_local} ${jslint_test}"
}
if (params.PR_NUMBER != '') {
jslint_test_cmd = "${jslint_test_cmd} -P ${params.PR_NUMBER}"
currentBuild.displayName = "PR: ${params.PR_NUMBER}"
}
}
sh "export PRODUCT=SUSE-Manager && ${jslint_test_cmd}"
}
}
}
post {
success {
script {
if (params.cleanWorkspace == true) {
echo 'Clean up current workspace, when job success.'
cleanWs()
}
}
}
}
}