forked from scs/substrate-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
executable file
·150 lines (150 loc) · 4.75 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
pipeline {
agent {
docker {
image 'scssubstratee/substratee_dev:18.04-2.9.1-1.1.2'
args '''
-u root
--privileged
'''
}
}
options {
timeout(time: 2, unit: 'HOURS')
buildDiscarder(logRotator(numToKeepStr: '3'))
}
stages {
stage('rustup') {
steps {
sh './ci/install_rust.sh'
}
}
stage('Start substrate-test-nodes') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'substraTEE/substrate-api-client-test-node_nightly', selector: lastCompleted()
sh 'target/release/node-template purge-chain --dev -y'
sh 'target/release/node-template --dev &'
}
}
stage('Build') {
steps {
sh 'cargo build --message-format json > ${WORKSPACE}/build_debug.log'
sh 'cargo build --release --message-format json > ${WORKSPACE}/build_release.log'
sh 'cargo build --release --no-default-features --message-format json > ${WORKSPACE}/build_release_no_default_features.log'
}
}
stage('Build no_std') {
steps {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {
sh 'cd test_no_std && cargo build --message-format json > ${WORKSPACE}/build_no_std.log'
}
}
}
stage('Build examples') {
steps {
sh 'cargo build --examples --message-format json > ${WORKSPACE}/build_examples_debug.log'
sh 'cargo build --release --examples --message-format json > ${WORKSPACE}/build_examples_release.log'
}
}
stage('Unit tests') {
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {
sh 'cargo test'
}
}
}
stage('Test against substrate-test-node') {
options {
timeout(time: 1, unit: 'MINUTES')
}
steps {
// run examples
sh 'target/release/examples/example_generic_extrinsic'
sh 'target/release/examples/example_print_metadata'
sh 'target/release/examples/example_transfer'
sh 'target/release/examples/example_get_storage'
sh 'target/release/examples/example_get_blocks'
sh 'target/release/examples/example_benchmark_bulk_xt'
sh 'target/release/examples/example_event_error_details'
// TODO: example needs fixing sh 'target/release/examples/example_sudo'
}
}
stage('Clippy') {
steps {
sh 'cargo clean'
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'cargo clippy --release 2>&1 | tee ${WORKSPACE}/clippy_release.log'
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'cargo clippy --release --no-default-features 2>&1 | tee ${WORKSPACE}/clippy_release_no_default_features.log'
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'cd test_no_std && cargo clippy 2>&1 | tee ${WORKSPACE}/clippy_no_std.log'
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'cargo clippy --release --examples 2>&1 | tee ${WORKSPACE}/clippy_examples_release.log'
}
}
}
stage('Formater') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'UNSTABLE') {
sh 'cargo fmt -- --check > ${WORKSPACE}/fmt.log'
}
}
}
stage('Results') {
steps {
recordIssues(
aggregatingResults: true,
enabledForFailure: true,
qualityGates: [[threshold: 1, type: 'TOTAL', unstable: true]],
tools: [
cargo(
pattern: 'build_*.log',
reportEncoding: 'UTF-8'
),
groovyScript(
parserId:'clippy-warnings',
pattern: 'clippy_*.log',
reportEncoding: 'UTF-8'
),
groovyScript(
parserId:'clippy-errors',
pattern: 'clippy_*.log',
reportEncoding: 'UTF-8'
)
]
)
script {
try {
sh './ci/check_fmt_log.sh'
}
catch (exc) {
echo 'Style changes detected. Setting build to unstable'
currentBuild.result = 'UNSTABLE'
}
}
}
}
stage('Archive artifact') {
steps {
archiveArtifacts artifacts: '*.log', fingerprint: true
}
}
}
post {
unsuccessful {
emailext (
subject: "Jenkins Build '${env.JOB_NAME} [${env.BUILD_NUMBER}]' is ${currentBuild.currentResult}",
body: "${env.JOB_NAME} build ${env.BUILD_NUMBER} is ${currentBuild.currentResult}\n\nMore info at: ${env.BUILD_URL}",
to: "${env.RECIPIENTS_SUBSTRATEE}"
)
}
always {
cleanWs()
}
}
}