forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
227 lines (204 loc) · 8.98 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
//
// Copyright (c) 2018 Nordic Semiconductor ASA. All Rights Reserved.
//
// The information contained herein is confidential property of Nordic Semiconductor ASA.
// The use, copying, transfer or disclosure of such information is prohibited except by
// express written agreement with Nordic Semiconductor ASA.
//
@Library("CI_LIB") _
HashMap CI_STATE = lib_State.getConfig(JOB_NAME)
properties(lib_State.getTriggers())
def TestExecutionList = [:]
pipeline {
parameters {
booleanParam(name: 'RUN_DOWNSTREAM', description: 'if false skip downstream jobs', defaultValue: true)
booleanParam(name: 'RUN_TESTS', description: 'if false skip testing', defaultValue: true)
booleanParam(name: 'RUN_BUILD', description: 'if false skip building', defaultValue: true)
string(name: 'PLATFORMS', description: 'Default Platforms to test', defaultValue: 'nrf9160dk_nrf9160 nrf52dk_nrf52832 nrf52840dk_nrf52840 nrf5340pdk_nrf5340_cpuapp')
string(name: 'jsonstr_CI_STATE', description: 'Default State if no upstream job', defaultValue: CI_STATE.CFG.INPUT_STATE_STR)
choice(name: 'CRON', choices: ['COMMIT', 'NIGHTLY', 'WEEKLY'], description: 'Cron Test Phase')
}
agent none
options {
parallelsAlwaysFailFast()
timeout(time: CI_STATE.CFG.TIMEOUT.time, unit: CI_STATE.CFG.TIMEOUT.unit)
}
environment {
GH_TOKEN = credentials('nordicbuilder-compliance-token') // This token is used to by check_compliance to comment on PRs and use checks
GH_USERNAME = "NordicBuilder"
COMPLIANCE_ARGS = "-r nrfconnect/sdk-nrf"
ARCH = "-a arm"
SANITYCHECK_OPTIONS_COMMON = '''--ninja \
--board-root nrf/boards \
--board-root zephyr/boards \
--testcase-root nrf/samples \
--testcase-root nrf/applications \
--testcase-root nrf/tests \
--inline-logs --disable-unrecognized-section-test \
--tag ci_build \
--retry-failed 7 \
'''
}
stages {
stage('Load') {
agent { label CI_STATE.CFG.AGENT_LABELS }
steps { script { CI_STATE = lib_State.load('NRF', CI_STATE) }}
}
stage('Specification') { steps { script {
def TestStages = [:]
TestStages["compliance"] = {
node (CI_STATE.CFG.AGENT_LABELS) {
stage('Compliance Test'){
println "Using Node:$NODE_NAME"
docker.image("$CI_STATE.CFG.DOCKER_REG/$CI_STATE.CFG.IMAGE_TAG").inside {
dir('nrf') {
checkout scm
CI_STATE.SELF.REPORT_SHA = lib_Main.checkoutRepo(
CI_STATE.SELF.GIT_URL, "NRF", CI_STATE.SELF, false)
lib_Status.set("PENDING", 'NRF', CI_STATE);
lib_West.AddManifestUpdate("NRF", 'nrf',
CI_STATE.SELF.GIT_URL, CI_STATE.SELF.GIT_REF, CI_STATE)
}
lib_West.InitUpdate('nrf')
lib_West.ApplyManifestUpdates(CI_STATE)
dir('nrf') {
script {
// If we're a pull request, compare the target branch against the current HEAD (the PR), and also report issues to the PR
def BUILD_TYPE = lib_Main.getBuildType(CI_STATE.SELF)
if (BUILD_TYPE == "PR") {
COMMIT_RANGE = "$CI_STATE.SELF.MERGE_BASE..$CI_STATE.SELF.REPORT_SHA"
COMPLIANCE_ARGS = "$COMPLIANCE_ARGS $CI_STATE.SELF.CUSTOM_COMPLIANCE_ARGS -p $CHANGE_ID -S $CI_STATE.SELF.REPORT_SHA"
println "Building a PR [$CHANGE_ID]: $COMMIT_RANGE"
}
else if (BUILD_TYPE == "TAG") {
COMMIT_RANGE = "tags/${env.BRANCH_NAME}..tags/${env.BRANCH_NAME}"
println "Building a Tag: " + COMMIT_RANGE
}
// If not a PR, it's a non-PR-branch or master build. Compare against the origin.
else if (BUILD_TYPE == "BRANCH") {
COMMIT_RANGE = "origin/${env.BRANCH_NAME}..HEAD"
println "Building a Branch: " + COMMIT_RANGE
}
else {
assert condition : "Build fails because it is not a PR/Tag/Branch"
}
// Run the compliance check
try {
sh """ \
(source ../zephyr/zephyr-env.sh && \
pip install --user -r ../tools/ci-tools/requirements.txt && \
pip install --user pylint && \
echo "<?xml version=\\"1.0\\" encoding=\\"utf-8\\"?>" > compliance.xml
echo "<testsuites errors=\\"0\\" failures=\\"0\\" tests=\\"1\\">" >> compliance.xml
echo "<testsuite errors=\\"0\\" failures=\\"0\\" tests=\\"1\\">" >> compliance.xml
echo "<testcase classname=\\"nop\\" name=\\"nop\\"/>" >> compliance.xml
echo "</testsuite>" >> compliance.xml
echo "</testsuites>" >> compliance.xml)
"""
}
finally {
junit 'compliance.xml'
archiveArtifacts artifacts: 'compliance.xml'
lib_Main.storeArtifacts("compliance", 'compliance.xml', 'NRF', CI_STATE)
}
}
}
}
cleanWs()
}
}
}
if (CI_STATE.SELF.CRON == 'COMMIT') {
println "Running Commit Tests"
} else if (CI_STATE.SELF.CRON == 'NIGHTLY') {
println "Running Nightly Tests"
} else if (CI_STATE.SELF.CRON == 'WEEKLY') {
println "Running Weekly Tests"
}
def PLATFORM_LIST = lib_Main.getPlatformList(CI_STATE.SELF.PLATFORMS)
def COMPILER_LIST = ['gnuarmemb'] //'zephyr',
def INPUT_MAP = [p : PLATFORM_LIST, c : COMPILER_LIST ]
def PLATFORM_COMPILER_MAP = INPUT_MAP.values().combinations { args ->
[INPUT_MAP.keySet().toList(), args].transpose().collectEntries { [(it[0]): it[1]]}
}
def sanityCheckStages = PLATFORM_COMPILER_MAP.collectEntries {
["SanityCheck\n${it.c}\n${it.p}" : generateParallelStage(it.p, it.c, JOB_NAME, CI_STATE, SANITYCHECK_OPTIONS_COMMON)]
}
if (CI_STATE.SELF.RUN_TESTS) {
TestExecutionList['compliance'] = TestStages["compliance"]
}
if (CI_STATE.SELF.RUN_BUILD) {
TestExecutionList = TestExecutionList.plus(sanityCheckStages)
}
println "TestExecutionList = $TestExecutionList"
}}}
stage('Execution') { steps { script {
parallel TestExecutionList
// FilePath context variable is required to send Github notifications
node(CI_STATE.CFG.AGENT_LABELS) {
lib_Status.set("${currentBuild.currentResult}", 'NRF', CI_STATE)
}
}}}
stage('Trigger Downstream Jobs') {
when { expression { CI_STATE.SELF.RUN_DOWNSTREAM } }
steps { script { lib_Stage.runDownstream(JOB_NAME, CI_STATE) } }
}
stage('Report') {
when { expression { CI_STATE.SELF.RUN_TESTS } }
steps { script {
println 'no report generation yet'
} }
}
}
post {
// This is the order that the methods are run. {always->success/abort/failure/unstable->cleanup}
always {
script {
echo "always";
// FilePath context variable is required to send Github notifications
node(CI_STATE.CFG.AGENT_LABELS) {
lib_Status.set( "${currentBuild.currentResult}" , 'FULL_CI', CI_STATE)
}
}
}
/* uncomment if logic is needed
success { }
aborted { }
unstable { }
failure { }
cleanup { }
*/
}
}
def generateParallelStage(platform, compiler, JOB_NAME, CI_STATE, SANITYCHECK_OPTIONS_COMMON) {
return {
node (CI_STATE.CFG.AGENT_LABELS) {
stage('.'){
println "Using Node:$NODE_NAME"
docker.image("$CI_STATE.CFG.DOCKER_REG/$CI_STATE.CFG.IMAGE_TAG").inside {
dir('nrf') {
checkout scm
CI_STATE.SELF.REPORT_SHA = lib_Main.checkoutRepo(
CI_STATE.SELF.GIT_URL, "NRF", CI_STATE.SELF, false)
lib_West.AddManifestUpdate("NRF", 'nrf',
CI_STATE.SELF.GIT_URL, CI_STATE.SELF.GIT_REF, CI_STATE)
}
lib_West.InitUpdate('nrf')
lib_West.ApplyManifestUpdates(CI_STATE)
PLATFORM_ARGS = lib_Main.getPlatformArgs(platform)
SANITYCHECK_CMD = "./zephyr/scripts/sanitycheck $SANITYCHECK_OPTIONS_COMMON $PLATFORM_ARGS"
FULL_SANITYCHECK_CMD = """
export ZEPHYR_TOOLCHAIN_VARIANT='$compiler' && \
source zephyr/zephyr-env.sh && \
pip install --user -r nrf/scripts/requirements-ci.txt && \
export && \
$SANITYCHECK_CMD
"""
println "FULL_SANITYCHECK_CMD = " + FULL_SANITYCHECK_CMD
sh FULL_SANITYCHECK_CMD
}
cleanWs()
}
}
}
}