-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-boards.jenkinsfile
90 lines (88 loc) · 3.69 KB
/
build-boards.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
pipeline {
agent { label 'build-node' }
parameters {
string (
defaultValue: 'CONNECTED_BOARDS',
description: 'List of boards to test',
name: 'BOARDS',
trim: true
)
string (
defaultValue: 'riot/master',
description: 'RIOT version to build with remote',
name: 'RIOT_VERSION',
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('build') {
steps {
script {
def branches = [:]
for (board in env.BUILD_BOARDS.split()) {
def name = board
branches["${name}"] = {
stage ("build-${name}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
build job: 'build-board.jk',
propagate: false,
parameters: [
[
$class: 'LabelParameterValue',
name: 'node',
label: 'build-node'
],
string (
name: 'BOARD',
value: String.valueOf(name)
),
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)
)
]
}
}
}
}
parallel branches
}
}
}
}
}