-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathJenkinsfile
More file actions
432 lines (417 loc) · 25.1 KB
/
Copy pathJenkinsfile
File metadata and controls
432 lines (417 loc) · 25.1 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
// Jenkinsfile for libCEC
//
// Behaviour:
// PR / branch push → build on Linux + Windows, no artefacts kept.
// master push → same, plus the five Windows release artefacts,
// unsigned.
// Tag push (libcec-<x.y.z>) → version cross-check against CMakeLists.txt, then
// the same five artefacts, code signed.
//
// Archived per build: a tarball of the Linux install tree. master and tags add
// the amd64 Debian packages, and the same five Windows files a GitHub release
// carries — libcec-{x64,x86}-<ver>.exe, libcec-{x64,x86}-dbg-<ver>.exe and
// libcec-eventghost-plugin-<ver>.egplugin.
//
// Everything a non-tag build produces carries a 'git<date>.<commit>' snapshot
// identifier — in the version for the Debian packages, in the filename for the
// Windows ones — so it names the commit it came from and cannot be confused with
// the release it precedes. Tag builds carry the release version alone.
//
// The Debian packages are amd64 only: building arm64/armhf needs qemu binfmt
// emulation, which the Linux agent does not have.
//
// The Jenkins controller is on an internal network and GitHub cannot reach it,
// so there is no webhook: the multibranch job polls GitHub on a timer
// ("Scan Repository Triggers" → periodically). Nothing in this file needs to
// know that, but it explains why a push takes a few minutes to show up.
//
// Reference Jenkinsfile patterns:
// - PulseEight.SMT.Panasonic/Jenkinsfile — tag-driven release vs branch/PR build
//
// SECRETS: no literal belongs in this file. Code signing binds the Jenkins
// AZURE_* credentials through `withCredentials` around the tag branch alone, so
// a build of anything else — including a pull request from a fork — cannot
// reach them. windows/codesigner.py reads them from the environment and writes
// the certificate metadata to support/private, which .gitignore excludes.
//
// Agent expectations:
// linux — podman only; the build toolchain lives in the container image.
// windows — Visual Studio Community 2026 (toolchain id '2026c'), CMake, NSIS,
// swig, the .NET 8 SDK, and Python 3.12+ in *both* 64-bit and 32-bit:
// the EventGhost plugin embeds the x86 library and the x86 Python
// module, so an x86 build needs 32-bit Python headers and .lib to
// produce that module. This is what windows/create-installer.py
// drives; see CLAUDE.md.
//
// The two Linux artefacts carry the same backends: the tarball is configured with
// the -DHAVE_{LINUX,EXYNOS,AOCEC}_API flags debian/rules already passes, so it is
// not quietly weaker than the .deb built beside it. Anyone downloading the tarball
// for a modern Linux box wants the kernel CEC framework backend in particular.
//
// Keeping the two flag sets identical is also what makes one workspace safe:
// per CLAUDE.md the HAVE_*_API flags rewrite generated files in the *source*
// tree, so two builds that disagree about them cannot share a checkout. Adding a
// backend here means adding it to debian/rules too (or giving it its own stage
// and workspace). The remaining SoC backends (RPi, TDA995x, i.MX, Tegra) need
// vendor headers the image does not carry and stay out of CI.
pipeline {
agent none
options {
timeout(time: 90, unit: 'MINUTES')
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10'))
disableConcurrentBuilds()
}
environment {
DOTNET_CLI_TELEMETRY_OPTOUT = '1'
DOTNET_NOLOGO = '1'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE = '1'
GITHUB_REPO = 'Pulse-Eight/libcec'
// Windows toolchain id understood by windows/create-installer.py -t.
// '2026c' is Visual Studio Community 2026, the edition on the build agent.
WIN_TOOLCHAIN = '2026c'
}
stages {
stage('Context') {
agent { label 'linux' }
steps {
script {
env.IS_TAG = (env.TAG_NAME != null && env.TAG_NAME.startsWith('libcec-')) ? 'true' : 'false'
env.IS_MASTER = (env.BRANCH_NAME == 'master') ? 'true' : 'false'
// The version lives in the top-level CMakeLists.txt and is the
// source of truth for include/version.h, the SONAME and the
// installer filename, all of which are generated from it.
def cml = readFile 'CMakeLists.txt'
def part = { name ->
def m = (cml =~ /(?m)^\s*set\(LIBCEC_VERSION_${name}\s+(\d+)\s*\)/)
if (!m) { error "Could not read LIBCEC_VERSION_${name} from CMakeLists.txt" }
return m[0][1]
}
env.LIBCEC_VERSION = "${part('MAJOR')}.${part('MINOR')}.${part('PATCH')}"
if (env.IS_TAG == 'true') {
// Tags are 'libcec-<x.y.z>' (e.g. libcec-8.1.1).
env.RELEASE_VERSION = env.TAG_NAME.substring('libcec-'.length())
currentBuild.displayName = "#${BUILD_NUMBER} (${env.TAG_NAME})"
}
// One snapshot identifier for every artefact in a build, so a
// package and an installer from the same run carry the same name
// and both point at the commit they came from. A tag is the
// released version and gets none. The date leads so successive
// snapshots sort in build order; a hash alone does not.
env.SNAPSHOT_SUFFIX = (env.IS_TAG == 'true') ? '' :
"git${sh(returnStdout: true, script: 'date -u +%Y%m%d').trim()}." +
"${(env.GIT_COMMIT ?: '').take(8)}"
}
sh '''
echo "Branch: ${BRANCH_NAME:-<none>}"
echo "Tag: ${TAG_NAME:-<none>}"
echo "IsTag: ${IS_TAG}"
echo "IsMaster: ${IS_MASTER}"
echo "Git commit: ${GIT_COMMIT:-<none>}"
echo "CMake version: ${LIBCEC_VERSION}"
echo "---"
podman --version
'''
}
post {
cleanup { cleanWs() }
}
}
stage('Validate tag version') {
// A tag whose version does not match CMakeLists.txt would produce an
// installer and a SONAME that disagree with the tag name. Catch the
// typo here rather than after publishing.
agent none
when { expression { env.IS_TAG == 'true' } }
steps {
script {
if (env.RELEASE_VERSION != env.LIBCEC_VERSION) {
error("Tag ${env.TAG_NAME} implies version ${env.RELEASE_VERSION}, " +
"but CMakeLists.txt declares ${env.LIBCEC_VERSION}. " +
"Either bump LIBCEC_VERSION_* or retag.")
}
echo "Version check: OK (${env.LIBCEC_VERSION})"
}
}
}
stage('Build') {
parallel {
stage('Linux') {
agent { label 'linux && podman' }
steps {
// The build runs in a container rather than on the agent so
// the agent stays generic: it carries podman, and the C++
// toolchain and -dev packages live in the image. The package
// list is debian/control's Build-Depends minus the .NET and
// Node.js entries, which only the optional ENABLE_DOTNET_LIB
// and ENABLE_NODE_LIB targets need.
//
// bookworm matches the agent's own distribution, so a failure
// here is one that would reproduce on the agent.
//
// Rootless podman maps container root to the agent's own uid,
// so the build output is owned by the agent and cleanWs can
// remove it.
//
// The HAVE_*_API flags are debian/rules': the tarball ships
// the same backends as the .deb from this build. They need
// no headers beyond linux-libc-dev (<linux/cec.h>), which
// build-essential already pulls in.
//
// cec-client needs no CEC hardware to print its usage, so the
// smoke test proves the shared library links and loads. It is
// inside the container because that is where libcec.so's
// dependencies are installed.
sh '''
set -e
rm -rf dist stage
mkdir -p dist
podman pull -q --platform linux/amd64 docker.io/library/debian:bookworm
podman run --rm --platform linux/amd64 \\
-e LIBCEC_VERSION="$LIBCEC_VERSION" \\
-e SNAPSHOT_SUFFIX="$SNAPSHOT_SUFFIX" \\
-v "$WORKSPACE":/src:z \\
-w /src \\
docker.io/library/debian:bookworm \\
bash -c '
set -e
apt-get update -qq
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \\
build-essential cmake pkg-config swig \\
libudev-dev libxrandr-dev x11proto-core-dev \\
libncurses-dev python3-dev
rm -rf build
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \\
-DHAVE_LINUX_API=1 \\
-DHAVE_EXYNOS_API=1 \\
-DHAVE_AOCEC_API=1
make -j"$(nproc)"
./src/cec-client/cec-client --help 2>&1 | head -20
ldd ./src/libcec/libcec.so | head -20
make install DESTDIR=/src/stage
# the same snapshot identifier the Windows artefacts
# carry, joined the same way: a filename has no
# version ordering to respect, unlike a package
SUFFIX=""
if [ -n "$SNAPSHOT_SUFFIX" ]; then
SUFFIX="-$SNAPSHOT_SUFFIX"
fi
tar -czf "/src/dist/libcec-linux-x86_64-${LIBCEC_VERSION}${SUFFIX}.tar.gz" -C /src/stage .
'
tar -tzf dist/libcec-linux-x86_64-*.tar.gz | head -20
'''
script {
// The Debian packages are the shippable Linux artefact, so
// they are built where the Windows installers are: master
// and tags. amd64 only — the agent has no binfmt/qemu, so
// arm64 and armhf cannot be emulated here.
//
// trixie rather than the bookworm used above, because that
// is what these packages target. debian/control
// build-depends on dotnet-sdk-8.0, which Debian does not
// ship in any suite, so Microsoft's archive is added for it.
if (env.IS_TAG == 'true' || env.IS_MASTER == 'true') {
sh '''
set -e
podman pull -q --platform linux/amd64 docker.io/library/debian:trixie
podman run --rm --platform linux/amd64 \\
-e SNAPSHOT_SUFFIX="$SNAPSHOT_SUFFIX" \\
-v "$WORKSPACE":/src:z \\
-w /src \\
docker.io/library/debian:trixie \\
bash -c '
set -e
export DEBIAN_FRONTEND=noninteractive
apt-get update -qq
apt-get install -y --no-install-recommends \\
ca-certificates curl devscripts equivs dpkg-dev
curl -fsSL -o /tmp/ms-prod.deb \\
https://packages.microsoft.com/config/debian/13/packages-microsoft-prod.deb
dpkg -i /tmp/ms-prod.deb
apt-get update -qq
# dpkg-buildpackage writes the .debs to the parent
# directory, and the cmake build above leaves output
# in the workspace, so build from a clean copy
rm -rf /work
mkdir -p /work/libcec
cp -a /src/. /work/libcec/
rm -rf /work/libcec/build /work/libcec/stage /work/libcec/dist
cd /work/libcec
# debian/changelog is generated: changelog.in
# carries a #DIST# placeholder per suite.
# The first #DIST# is the one inside the
# version, so a snapshot suffix goes there
# and the suite name is left alone. The
# suffix starts with ~ so a snapshot sorts
# below the release it leads up to.
SUFFIX=""
if [ -n "$SNAPSHOT_SUFFIX" ]; then
SUFFIX="~$SNAPSHOT_SUFFIX"
fi
sed -e "1s/#DIST#/trixie${SUFFIX}/" \\
-e "s/#DIST#/trixie/g" \\
debian/changelog.in > debian/changelog
head -1 debian/changelog
if [ -n "$SUFFIX" ]; then
BASE=$(head -1 debian/changelog.in | sed -e "s/#DIST#/trixie/g" -e "s/^libcec (//" -e "s/).*//")
SNAP=$(head -1 debian/changelog | sed -e "s/^libcec (//" -e "s/).*//")
dpkg --compare-versions "$SNAP" lt "$BASE"
echo "version check: $SNAP sorts below $BASE"
fi
mk-build-deps -i -r -t "apt-get -y --no-install-recommends"
dpkg-buildpackage -us -uc -b
cp /work/*.deb /src/dist/
'
ls -l dist/*.deb
'''
}
}
}
post {
success {
archiveArtifacts artifacts: 'dist/*',
fingerprint: true
}
cleanup { cleanWs() }
}
}
stage('Windows') {
// 'libcec', not the broader 'windows': the build needs a C++
// toolchain, CMake, NSIS, swig and the three Pythons listed
// above, and only an agent provisioned that way carries the
// label. Give it to another agent to add capacity.
agent { label 'windows && libcec' }
// The agents run several builds at once, and a shared temp
// directory is what libCEC.nsi stages the uninstaller through.
// A workspace-local one keeps builds apart whatever else is
// staged there, and cleanWs takes it with the workspace.
environment {
TEMP = "${WORKSPACE}\\tmp"
TMP = "${WORKSPACE}\\tmp"
}
steps {
bat '''
if not exist "%TEMP%" mkdir "%TEMP%"
'''
// src/dotnet (cec-dotnet: cec-tray + CecSharpTester) is only
// needed by the Windows build and the multibranch GitHub source
// does not fetch submodules, so init it explicitly. The
// submodule URL is https and the repo is public, so this needs
// no credentials.
bat '''
git submodule update --init --recursive
'''
bat '''
py -3-64 --version
cmake --version
dotnet --version
'''
script {
// 'py -3-64', not 'python': windows/toolchain.py locates
// Visual Studio through %ProgramFiles%, which Windows
// redirects to the x86 directory for a 32-bit process, and
// the 32-bit interpreter the EventGhost plugin needs comes
// first on PATH.
//
// Branch/PR: x64, no installer and no EventGhost plugin.
// The plugin always embeds the x86 library, so building it
// forces a second full build of the library on top of the
// requested architecture.
//
// master and tags produce the five artefacts a release
// ships: a Release and a Debug installer for each of x64
// and x86, plus the EventGhost plugin. 'Debug' is what
// names an installer '-dbg' and has it carry the PDBs.
//
// The x86 installers carry no Node.js binding: Node has
// no 32-bit Windows build since v23, so there is no ia32
// addon to build. create-installer.py skips it for x86 on
// its own, so -nn is not needed here.
def installers = {
bat "py -3-64 windows\\create-installer.py -t %WIN_TOOLCHAIN% -m Release -a x64 -v"
bat "py -3-64 windows\\create-installer.py -t %WIN_TOOLCHAIN% -m Release -a x86 -v"
bat "py -3-64 windows\\create-installer.py -t %WIN_TOOLCHAIN% -m Debug -a x64 -v"
bat "py -3-64 windows\\create-installer.py -t %WIN_TOOLCHAIN% -m Debug -a x86 -v"
// The Release builds write the plugin to build/EventGhost
// under a fixed name; dist/ is what gets archived and the
// release asset carries the version.
bat "copy /y build\\EventGhost\\pulse_eight.egplugin dist\\libcec-eventghost-plugin-${env.LIBCEC_VERSION}.egplugin"
}
// Only a tag is a release, so only a tag is signed and only
// a tag is given the credentials. windows/codesigner.py
// signs on seeing AZURE_SIGNING_JSON, so a master or PR
// build reports that it is not signing and carries on.
if (env.IS_TAG == 'true') {
withCredentials([
string(credentialsId: 'AZURE_SIGNING_JSON', variable: 'AZURE_SIGNING_JSON'),
string(credentialsId: 'AZURE_TENANT_ID', variable: 'AZURE_TENANT_ID'),
string(credentialsId: 'AZURE_CLIENT_ID', variable: 'AZURE_CLIENT_ID'),
string(credentialsId: 'AZURE_CLIENT_SECRET', variable: 'AZURE_CLIENT_SECRET'),
]) {
// An empty binding would leave codesigner disabled and
// ship a release unsigned without saying anything, so
// check before spending a build on it.
//
// '@echo off' first: cmd echoes each command after
// expanding it, so testing "%AZURE_SIGNING_JSON%" with
// echo on would print the certificate metadata to the
// console. Jenkins masks bound credentials, but that
// masking is unreliable for multi-line values.
bat '''
@echo off
if not defined AZURE_SIGNING_JSON (echo AZURE_SIGNING_JSON is not set & exit /b 1)
if "%AZURE_SIGNING_JSON%"=="" (echo AZURE_SIGNING_JSON is empty & exit /b 1)
echo AZURE_SIGNING_JSON is present
'''
installers()
}
}
else if (env.IS_MASTER == 'true') {
installers()
}
else {
bat "py -3-64 windows\\create-installer.py -t %WIN_TOOLCHAIN% -m Release -a x64 -ne -ni -v"
}
if (env.IS_TAG == 'true' || env.IS_MASTER == 'true') {
if (env.SNAPSHOT_SUFFIX) {
// Same identifier the Debian packages carry, so a
// master artefact names the commit it came from and
// cannot be mistaken for the release it precedes.
// A tag keeps the release filenames untouched.
// 'for /f' over dir, not 'for %%f in (dist\\*.exe)':
// the latter enumerates lazily, so a file renamed
// during the loop still matches the wildcard and
// gets the suffix applied twice.
bat "for /f \"delims=\" %%f in ('dir /b dist\\*.exe dist\\*.egplugin') do @ren \"dist\\%%f\" \"%%~nf-${env.SNAPSHOT_SUFFIX}%%~xf\""
}
bat "dir /b dist"
}
}
}
post {
success {
// dist/ only has content when an installer was built
// (master + tags); allowEmptyArchive keeps PR builds green.
archiveArtifacts artifacts: 'dist/*.exe, dist/*.egplugin',
allowEmptyArchive: true,
fingerprint: true
}
cleanup { cleanWs() }
}
}
}
}
}
post {
always {
script {
def mode = (env.IS_TAG == 'true') ? "release ${env.TAG_NAME}"
: (env.IS_MASTER == 'true') ? 'master'
: 'branch/PR'
echo "Build summary: mode=${mode} version=${env.LIBCEC_VERSION}"
}
}
}
}