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
#!groovy
@Library("ci-jenkins") import com.swiftnav.ci.*
def context = new Context(context: this)
context.setRepo('dencode')
String dockerRunArgs = "\
-e USER=jenkins"
pipeline {
agent {
node {
label('docker.m')
}
}
options {
timeout(time: 1, unit: 'HOURS')
timestamps()
// Keep builds for 30 days.
buildDiscarder(logRotator(daysToKeepStr: '30'))
}
stages {
stage('Checks') {
parallel {
stage('Check') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
steps {
gitPrep()
script {
sh("""#!/bin/bash -ex
| cargo check --all-features --all-targets
""".stripMargin())
}
}
}
stage('Format') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
steps {
gitPrep()
script {
sh("""#!/bin/bash -ex
| cargo fmt -- --check
""".stripMargin())
}
}
}
stage('Clippy') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
steps {
gitPrep()
script {
sh("""#!/bin/bash -ex
| cargo clippy --all-features --all-targets -- --deny warnings
""".stripMargin())
}
}
}
stage('Test') {
agent { dockerfile { reuseNode true; args dockerRunArgs } }
steps {
gitPrep()
script {
sh("""#!/bin/bash -ex
| cargo test --all-features --all-targets
""".stripMargin())
}
}
}
}
}
}
}