-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
47 lines (40 loc) · 1.07 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
#!/usr/bin/env groovy
node('docker && awsaccess') {
cleanWorkspace()
stage('Build docker image') {
checkout scm
def imageId = 'docker.io/resolvme:latest'
dockerImage = docker.build('resolvme:latest')
dockerTestImage = docker.build('resolvme:jenkins', "-f Dockerfile-dev .")
}
dockerTestImage.inside() {
stage('Run linter') {
sh 'bundle exec rubocop --fail-level=F'
}
stage('Run unit tests') {
sh 'bundle exec rake spec'
}
stage('Publish coverage report') {
publishHTML([
allowMissing: false,
alwaysLinkToLastBuild: true,
keepAll: false,
reportDir: 'coverage',
reportFiles: 'index.html',
reportName: 'Coverage report'
])
}
stage('Generate documentation') {
sh 'bundle exec yard doc --exclude vendor .'
publishHTML([
allowMissing: false,
alwaysLinkToLastBuild: true,
keepAll: false,
reportDir: 'doc',
reportFiles: 'index.html',
reportName: 'Resolvme documentation'
])
}
nexusGemRelease()
}
}