forked from splintercommunity/sawtooth-pbft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
152 lines (138 loc) · 4.8 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
144
145
146
147
148
149
150
151
152
/*
* Copyright 2018 Bitwise IO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -----------------------------------------------------------------------------
*/
pipeline {
agent {
node {
label 'master'
customWorkspace "workspace/${env.BUILD_TAG}"
}
}
triggers {
cron(env.BRANCH_NAME == 'main' ? 'H 3 * * *' : '')
}
options {
timestamps()
buildDiscarder(logRotator(daysToKeepStr: '31'))
}
environment {
ISOLATION_ID = sh(returnStdout: true, script: 'printf $BUILD_TAG | sha256sum | cut -c1-64').trim()
JENKINS_UID = sh(returnStdout: true, script: "id -u ${USER}").trim()
}
stages {
stage('Check User Authorization') {
steps {
readTrusted 'bin/authorize-cicd'
sh './bin/authorize-cicd "$CHANGE_AUTHOR" /etc/jenkins-authorized-builders'
}
when {
not {
branch 'main'
}
}
}
stage('Run Lint') {
steps {
sh 'docker-compose run --rm sawtooth-pbft cargo fmt --version'
sh 'docker-compose run --rm sawtooth-pbft cargo fmt -- --check'
sh 'docker-compose run --rm sawtooth-pbft cargo clippy --version'
sh 'docker-compose run --rm sawtooth-pbft cargo clippy -- -D clippy::all'
}
}
stage('Run unit tests') {
steps {
sh 'docker-compose run --rm sawtooth-pbft cargo test'
}
}
stage('Build pbft engine') {
steps {
sh 'docker-compose -f docker/compose/pbft-build.yaml up'
}
post {
always {
sh 'docker-compose -f docker/compose/pbft-build.yaml down'
}
}
}
stage('Run liveness tests') {
steps {
sh './bin/run_docker_test tests/test_liveness.yaml'
}
}
stage('Run CFT tests') {
options {
timeout(time: 10, unit: 'MINUTES')
}
steps {
sh 'tests/test_crash_fault_tolerance.sh'
}
post {
always {
// The CFT tests use the local target/ directory to build and share the PBFT binary between
// containers, and that results in writing files to that local directory as root, which gives
// permission denied errors on a second run unless we fix the permissions here.
sh 'docker run --rm -v $(pwd)/target:/target sawtooth-pbft-engine-local:${ISOLATION_ID} bash -c "chown -R ${JENKINS_UID} /target"'
}
}
}
stage('Run dynamic membership tests') {
options {
timeout(time: 10, unit: 'MINUTES')
}
steps {
sh 'tests/test_dynamic_membership.sh'
}
post {
always {
sh 'docker run --rm -v $(pwd)/target:/target sawtooth-pbft-engine-local:${ISOLATION_ID} bash -c "chown -R ${JENKINS_UID} /target"'
}
}
}
stage('Run non-genesis startup tests') {
options {
timeout(time: 10, unit: 'MINUTES')
}
steps {
sh 'tests/test_non_genesis_startup.sh'
}
post {
always {
sh 'docker run --rm -v $(pwd)/target:/target sawtooth-pbft-engine-local:${ISOLATION_ID} bash -c "chown -R ${JENKINS_UID} /target"'
}
}
}
stage("Archive Build artifacts") {
steps {
sh 'docker-compose -f docker-compose-installed.yaml build'
sh 'docker run --rm -v $(pwd)/build:/build sawtooth-pbft-engine:${ISOLATION_ID} bash -c "cp /tmp/sawtooth-pbft-engine*.deb /build && chown -R ${JENKINS_UID} /build"'
}
}
}
post {
always {
sh 'docker-compose down'
}
success {
archiveArtifacts 'build/*.deb'
}
aborted {
error "Aborted, exiting now"
}
failure {
error "Failed, exiting now"
}
}
}