-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-pipeline.jenkinsfile
120 lines (117 loc) · 4 KB
/
build-pipeline.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
pipeline {
agent { label 'build-node' }
parameters {
string (
defaultValue: 'riot/master',
description: 'RIOT version to build with remote',
name: 'RIOT_VERSION',
trim: true
)
string (
defaultValue: 'CONNECTED_BOARDS',
description: 'List of boards to test',
name: 'BOARDS',
trim: true
)
string (
defaultValue: ' --with-test-only --incremental',
description: '''args for compile_and_test_for_board script''',
name: 'COMPILE_AND_TEST_ARGS'
)
string (
defaultValue: '',
description: '''environment vars for compile_and_test_for_board script
To pass USEMODULE and CFLAGS use:
DOCKER_ENVIRONMENT_CMDLINE=\'-e USEMODULE=<name>\'
DOCKER_ENVIRONMENT_CMDLINE=\'-e CFLAGS=-D<flag>\'''',
name: 'COMPILE_AND_TEST_VARS'
)
}
stages {
stage("setup"){
steps{
script {
currentBuild.displayName = "${currentBuild.number}-${params.RIOT_VERSION}"
}
script{
if (params.BOARDS == 'CONNECTED_BOARDS') {
env.BUILD_BOARDS = sh(script: "make -C /builds/boards/ list-boards --no-print-directory", returnStdout: true).trim()
} else {
env.BUILD_BOARDS = params.BOARDS
}
}
}
}
stage('RIOT.git') {
steps {
build job: 'RIOT.git.jk',
parameters: [
[
$class: 'LabelParameterValue',
name: 'node',
label: 'build-node'
],
string (
name: 'RIOT_VERSION',
value: String.valueOf(env.RIOT_VERSION)
)
]
}
}
stage ('build-clean') {
steps {
ws("workspace/results/") {
sh "rm -rf -- *"
}
}
}
stage ('build-boards') {
steps {
build job: 'build-boards.jk',
parameters: [
[
$class: 'LabelParameterValue',
name: 'node',
label: 'build-node'
],
string (
name: 'BOARDS',
value: String.valueOf(env.BUILD_BOARDS)
),
string (
name: 'RIOT_VERSION',
value: String.valueOf(env.RIOT_VERSION)
),
string (
name: 'COMPILE_AND_TEST_ARGS',
value: String.valueOf(env.COMPILE_AND_TEST_ARGS)
),
string (
name: 'COMPILE_AND_TEST_VARS',
value: String.valueOf(env.COMPILE_AND_TEST_VARS)
)
]
}
}
stage ('build-results') {
steps {
ws("workspace/results/") {
sh "cp -ru build@*/* build/ || true"
}
ws("workspace/results/build") {
sh label: '', script: '''
python /builds/scripts/ci_aggregate.py .
'''
}
}
post {
always {
ws("workspace/results/build") {
archiveArtifacts artifacts: '**'
cleanWs()
}
}
}
}
}
}