-
Notifications
You must be signed in to change notification settings - Fork 10
/
ghaf-release-pipeline.groovy
158 lines (142 loc) · 3.78 KB
/
ghaf-release-pipeline.groovy
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
#!/usr/bin/env groovy
// SPDX-FileCopyrightText: 2022-2024 TII (SSRC) and the Ghaf contributors
// SPDX-License-Identifier: Apache-2.0
////////////////////////////////////////////////////////////////////////////////
def REPO_URL = 'https://github.com/tiiuae/ghaf/'
def WORKDIR = 'ghaf'
def DEF_GITREF = 'main'
// Utils module will be loaded in the first pipeline stage
def utils = null
properties([
githubProjectProperty(displayName: '', projectUrlStr: REPO_URL),
parameters([
string(name: 'GITREF', defaultValue: DEF_GITREF, description: 'Ghaf git reference (Commit/Branch/Tag)')
])
])
target_jobs = [:]
////////////////////////////////////////////////////////////////////////////////
def targets = [
// docs
[ system: "x86_64-linux",
target: "doc",
archive: false,
scs: false,
hwtest_device: null,
],
// lenovo x1
[ system: "x86_64-linux",
target: "lenovo-x1-carbon-gen11-debug",
archive: true,
scs: true,
hwtest_device: "lenovo-x1",
],
[ system: "x86_64-linux",
target: "lenovo-x1-carbon-gen11-debug-installer",
archive: true,
scs: true,
hwtest_device: null,
],
// nvidia orin
[ system: "aarch64-linux",
target: "nvidia-jetson-orin-agx-debug",
archive: true,
scs: true,
hwtest_device: "orin-agx",
],
[ system: "aarch64-linux",
target: "nvidia-jetson-orin-nx-debug",
archive: true,
scs: true,
hwtest_device: "orin-nx",
],
[ system: "x86_64-linux",
target: "nvidia-jetson-orin-agx-debug-from-x86_64",
archive: true,
scs: true,
hwtest_device: "orin-agx",
],
[ system: "x86_64-linux",
target: "nvidia-jetson-orin-nx-debug-from-x86_64",
archive: true,
scs: true,
hwtest_device: "orin-nx",
],
// others
[ system: "x86_64-linux",
target: "generic-x86_64-debug",
archive: true,
scs: true,
hwtest_device: "nuc",
],
[ system: "x86_64-linux",
target: "microchip-icicle-kit-debug-from-x86_64",
archive: true,
scs: true,
hwtest_device: "riscv",
],
]
////////////////////////////////////////////////////////////////////////////////
pipeline {
agent { label 'built-in' }
options {
disableConcurrentBuilds()
timestamps ()
buildDiscarder(logRotator(numToKeepStr: '100'))
}
environment {
// https://stackoverflow.com/questions/46680573
GITREF = params.getOrDefault('GITREF', DEF_GITREF)
}
stages {
stage('Checkout') {
steps {
script { utils = load "utils.groovy" }
dir(WORKDIR) {
checkout scmGit(
branches: [[name: env.GITREF]],
extensions: [cleanBeforeCheckout()],
userRemoteConfigs: [[url: REPO_URL]]
)
script {
env.TARGET_REPO = sh(script: 'git remote get-url origin', returnStdout: true).trim()
env.TARGET_COMMIT = sh(script: 'git rev-parse HEAD', returnStdout: true).trim()
env.ARTIFACTS_REMOTE_PATH = "${env.JOB_NAME}/build_${env.BUILD_ID}-commit_${env.TARGET_COMMIT}"
}
}
}
}
stage('Evaluate') {
steps {
dir(WORKDIR) {
script {
utils.nix_eval_jobs(targets)
target_jobs = utils.create_parallel_stages(targets, testset=null)
}
}
}
}
stage('Build targets') {
steps {
script {
parallel target_jobs
}
}
}
stage('Hardware tests') {
steps {
script {
targets.each {
if (it.hwtest_device != null) {
stage("Test ${it.target} (${it.system})") {
script {
def targetAttr = "${it.system}.${it.target}"
utils.ghaf_hw_test(targetAttr, it.hwtest_device, '_boot_bat_perf_')
}
}
}
}
}
}
}
}
}