forked from vanessa-opensource/vanessa-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
143 lines (112 loc) · 5.57 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
#!groovy
// ВНИМАНИЕ:
// Jenkins и его ноды нужно запускать с кодировкой UTF-8
// строка конфигурации для запуска Jenkins
// <arguments>-Xrs -Xmx256m -Dhudson.lifecycle=hudson.lifecycle.WindowsServiceLifecycle -Dmail.smtp.starttls.enable=true -Dfile.encoding=UTF-8 -jar "%BASE%\jenkins.war" --httpPort=8080 --webroot="%BASE%\war" </arguments>
//
// строка для запуска нод
// @"C:\Program Files (x86)\Jenkins\jre\bin\java.exe" -Dfile.encoding=UTF-8 -jar slave.jar -jnlpUrl http://localhost:8080/computer/slave/slave-agent.jnlp -secret XXX
// подставляйте свой путь к java, порту Jenkins и секретному ключу
//
// Если запускать Jenkins не в режиме UTF-8, тогда нужно поменять метод cmd в конце кода, применив комментарий к методу
node("artbear") {
// node("qanode") {
stage('Получение исходных кодов') {
//git url: 'https://github.com/silverbulleters/vanessa-agiler.git'
checkout scm
if (env.DISPLAY) {
println env.DISPLAY;
} else {
env.DISPLAY=":1"
}
env.RUNNER_ENV="production";
cmd('git config --global core.longpaths true')
// if (isUnix()) {sh 'git config --system core.longpaths true'} else {bat "git config --system core.longpaths true"}
cmd('git submodule update --init')
echo "Текущий каталог"
echo pwd()
echo "Переменные окружения"
cmd("set")
echo "Проверка выполнения oscript -version - находится ли он в PATH?"
timestamps {
cmd("where oscript")
cmd("oscript -version")
}
echo "Проверка выполнения v8unpack -version - находится ли он в PATH?"
timestamps {
cmd("where v8unpack")
cmd("v8unpack -version")
}
}
stage('BDD тестирование'){
// echo "checkout 1bdd"
// checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: '1bdd']], submoduleCfg: [], userRemoteConfigs: [[url: 'https://github.com/artbear/1bdd.git']]])
echo "exec bdd features"
// command = """1bdd features -junit-out tests/bdd-log.xml -out ./bdd-exec.log"""
command = """opm run coverage"""
def errors = []
try{
cmd(command)
} catch (e) {
errors << "BDD status : ${e}"
}
if (errors.size() > 0) {
currentBuild.result = 'UNSTABLE'
for (int i = 0; i < errors.size(); i++) {
echo errors[i]
}
}
// step([$class: 'ArtifactArchiver', artifacts: '**/bdd-exec.log', fingerprint: true])
// step([$class: 'ArtifactArchiver', artifacts: '**/tests/bdd-log.xml', fingerprint: true])
step([$class: 'JUnitResultArchiver', testResults: '**/bdd-exec.xml'])
}
stage('Контроль технического долга'){
if (env.QASONAR) {
println env.QASONAR;
def sonarcommand = "@\"./../../tools/hudson.plugins.sonar.SonarRunnerInstallation/Main_Classic/bin/sonar-scanner\""
withCredentials([[$class: 'StringBinding', credentialsId: env.SonarOAuthCredentianalID, variable: 'SonarOAuth']]) {
sonarcommand = sonarcommand + " -Dsonar.host.url=http://sonar.silverbulleters.org -Dsonar.login=${env.SonarOAuth}"
}
// Get version
def configurationText = readFile encoding: 'UTF-8', file: 'src/Модули/ПараметрыСистемы.os'
def configurationVersion = (configurationText =~ /Версия = \"(.*)\"/)[0][1]
sonarcommand = sonarcommand + " -Dsonar.projectVersion=${configurationVersion}"
def makeAnalyzis = true
if (env.BRANCH_NAME == "develop") {
echo 'Analysing develop branch'
} else if (env.BRANCH_NAME.startsWith("release/")) {
sonarcommand = sonarcommand + " -Dsonar.branch=${BRANCH_NAME}"
} 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([[$class: 'StringBinding', credentialsId: env.GithubOAuthCredentianalID, variable: 'githubOAuth']]) {
sonarcommand = sonarcommand + " -Dsonar.analysis.mode=issues -Dsonar.github.pullRequest=${PRNumber} -Dsonar.github.repository=${repository} -Dsonar.github.oauth=${env.githubOAuth}"
}
} else {
makeAnalyzis = false
}
if (makeAnalyzis) {
if (isUnix()) {
sh '${sonarcommand}'
} else {
bat "${sonarcommand}"
}
}
} else {
echo "QA runner not installed"
}
}
}
def cmd(command) {
// TODO при запуске Jenkins не в режиме UTF-8 нужно написать chcp 1251 вместо chcp 65001
if (isUnix()) { sh "${command}" } else { bat "chcp 65001\n${command}"}
}