-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
203 lines (199 loc) · 5.54 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
@Library("ci-jenkins") import com.swiftnav.ci.*
def context = new Context(context: this)
context.setRepo('esthri')
String dockerRunArgs = "-e USER=jenkins --group-add staff"
pipeline {
agent {
node {
label('docker.m')
}
}
environment {
SCCACHE_BUCKET="sccache-linux"
SCCACHE_SIZE="100G"
SCCACHE_DIR="/opt/sccache"
SCCACHE_REGION="us-west-2"
}
options {
timeout(time: 1, unit: 'HOURS')
timestamps()
// Keep builds for 30 days.
buildDiscarder(logRotator(daysToKeepStr: '30'))
}
stages {
stage('Prepare docker') {
parallel {
stage('Prepare docker (Rust latest)') {
agent { dockerfile { reuseNode true } }
steps {
sh("echo done")
}
}
stage('Prepare docker (Rust MSRV)') {
agent { dockerfile { reuseNode true; additionalBuildArgs "--build-arg=RUST_VERSION=1.74.0"} }
steps {
sh("echo done")
}
}
}
}
stage('Build checks') {
parallel {
stage('Build (rustls)') {
agent { dockerfile { reuseNode true } }
steps {
sh("cargo make build")
}
}
stage('Build library (rustls)') {
agent { dockerfile { reuseNode true } }
steps {
sh("cargo make build-lib")
}
}
stage('Build MSRV (rustls)') {
agent { dockerfile { reuseNode true; additionalBuildArgs "--build-arg=RUST_VERSION=1.74.0"} }
steps {
sh("cargo make -p dev+msrv build-lib")
}
}
stage('Build MSRV (nativetls)') {
agent { dockerfile { reuseNode true; additionalBuildArgs "--build-arg=RUST_VERSION=1.74.0"} }
steps {
sh("cargo make -p dev+msrv+nativetls build-lib")
}
}
stage('Build CLI (rustls)') {
agent { dockerfile { reuseNode true } }
steps {
sh("cargo make build-cli")
}
}
stage('Build (nativetls)') {
agent { dockerfile { reuseNode true } }
steps {
sh("cargo make --profile dev+nativetls build")
}
}
stage('Build library (nativetls)') {
agent { dockerfile { reuseNode true } }
steps {
sh("cargo make --profile dev+nativetls build-lib")
}
}
stage('Test (rustls)') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
environment {
AWS_REGION = "us-west-2"
AWS_DEFAULT_REGION = "us-west-2"
USER = "jenkins"
}
steps {
gitPrep()
lock(resource: "esthri-integration-tests") {
script {
sh("""/bin/bash -ex
|
| git lfs pull
|
| cargo make test
|
""".stripMargin())
}
}
}
}
stage('Test - minimum features (rustls)') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
environment {
AWS_REGION = "us-west-2"
AWS_DEFAULT_REGION = "us-west-2"
USER = "jenkins"
}
steps {
gitPrep()
lock(resource: "esthri-integration-tests") {
script {
sh("""/bin/bash -ex
|
| git lfs pull
|
| cargo make test-min
|
""".stripMargin())
}
}
}
}
stage('Test (nativetls)') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
environment {
AWS_REGION = "us-west-2"
AWS_DEFAULT_REGION = "us-west-2"
USER = "jenkins"
}
steps {
gitPrep()
lock(resource: "esthri-integration-tests") {
script {
sh("""/bin/bash -ex
|
| git lfs pull
|
| cargo make --profile dev+nativetls test
|
""".stripMargin())
}
}
}
}
stage('Test - minimum features (nativetls)') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
environment {
AWS_REGION = "us-west-2"
AWS_DEFAULT_REGION = "us-west-2"
USER = "jenkins"
}
steps {
gitPrep()
lock(resource: "esthri-integration-tests") {
script {
sh("""/bin/bash -ex
|
| git lfs pull
|
| cargo make --profile dev+nativetls test-min
|
""".stripMargin())
}
}
}
}
stage('Lint (rustls)') {
agent { dockerfile { reuseNode true } }
steps {
script {
sh("cargo make lint")
}
}
}
stage('Lint (nativetls)') {
agent { dockerfile { reuseNode true } }
steps {
script {
sh("cargo make --profile dev+nativetls lint")
}
}
}
stage('Format') {
agent { dockerfile { reuseNode true } }
steps {
script {
sh("cargo fmt -- --check")
}
}
}
}
}
}
}