-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
74 lines (71 loc) · 1.41 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
#!/usr/bin/env groovy
pipeline {
agent {
dockerfile {
filename 'Dockerfile.build'
}
}
stages {
stage('Bootstrap') {
steps {
echo 'Bootstrapping..'
sh 'go version'
}
}
stage('Prepare') {
steps {
echo 'Preparing..'
sh './bootstrap.sh'
sh './configure --prefix=/tmp'
}
}
stage('Lint') {
steps {
echo 'Linting..'
sh 'make lint-checkstyle'
}
}
stage('Vendor') {
steps {
echo 'Fetching vendor dependencies..'
sh 'make vendor'
}
}
stage('Build') {
steps {
echo 'Building..'
sh 'make DATE=reproducible LDFLAGS="" EXTLDFLAGS="$(DEB_BUILD_MAINT_OPTIONS=hardening=+all dpkg-buildflags --get LDFLAGS)"'
sh 'find ./.libs -type f -exec sha256sum {} \\;'
sh 'make examples'
}
}
stage('Test') {
steps {
echo 'Testing..'
sh 'make test-xml-short'
}
}
stage('Install') {
steps {
echo 'Installing..'
sh 'make install'
}
}
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: 100, type: 'TOTAL', unstable: true]], tools: [checkStyle(pattern: 'test/tests.lint.xml')]
archiveArtifacts 'dist/*.tar.gz'
cleanWs()
}
}
}