forked from danos/configd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
53 lines (45 loc) · 1.24 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
#!groovy
pipeline {
agent any
options {
ansiColor('xterm')
timestamps()
}
stages {
stage('Go Code Formatting') {
agent {
docker { image 'golang:1.15'
reuseNode true
}
}
steps {
sh script: "./gofmt.sh"
}
}
stage('DRAM') {
steps {
sh "dram --username jenkins -d yang"
}
}
stage('golangci-lint') {
agent {
docker { image 'golangci/golangci-lint:v1.40.0'
args '-u root --entrypoint=\'\''
reuseNode true
}
}
steps {
// .golangci.yml can contain config on which checks to perform
sh script: "golangci-lint run --out-format checkstyle ./... > checkstyle-result.xml",
returnStatus: true
}
post {
always {
recordIssues tool: checkStyle(),
qualityGates: [[type: 'TOTAL', threshold: 1, unstable: true]]
deleteDir()
}
}
}
}
}