-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
68 lines (65 loc) · 1.73 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
#!/usr/bin/env groovy
pipeline {
agent {
dockerfile {
filename 'Dockerfile.build'
}
}
stages {
stage('Bootstrap') {
steps {
echo 'Bootstrapping..'
sh 'go version'
}
}
stage('Lint') {
steps {
echo 'Linting..'
sh 'make lint-checkstyle'
}
}
stage('Test') {
steps {
echo 'Testing..'
sh 'make test-xml-short'
}
}
stage('Vendor') {
steps {
echo 'Fetching vendor dependencies..'
sh 'make vendor'
}
}
stage('Build') {
steps {
echo 'Building..'
sh 'make DATE=reproducible'
sh './bin/kapid version && sha256sum ./bin/kapid'
}
}
stage('Test with coverage') {
steps {
echo 'Testing with coverage..'
sh 'make test-coverage COVERAGE_DIR=test/coverage.jenkins || true'
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: 'test/coverage.jenkins', reportFiles: 'coverage.html', reportName: 'Go Coverage Report HTML', reportTitles: ''])
step([$class: 'CoberturaPublisher', autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'test/coverage.jenkins/coverage.xml', failUnhealthy: false, failUnstable: false, maxNumberOfBuilds: 0, onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false])
}
}
stage('Dist') {
steps {
echo 'Dist..'
sh 'test -z "$(git diff --shortstat 2>/dev/null |tail -n1)" && echo "Clean check passed."'
sh 'make check'
sh 'make dist'
}
}
}
post {
always {
junit allowEmptyResults: false, testResults: 'test/tests.xml'
recordIssues enabledForFailure: true, qualityGates: [[threshold: 200, type: 'TOTAL', unstable: true]], tools: [checkStyle(pattern: 'test/tests.lint.xml')]
archiveArtifacts 'dist/*.tar.gz'
cleanWs()
}
}
}