-
Notifications
You must be signed in to change notification settings - Fork 8
695 lines (637 loc) · 26.1 KB
/
Copy pathci-build.yml
File metadata and controls
695 lines (637 loc) · 26.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
---
name: CI-Build
permissions: {}
on:
workflow_call:
inputs:
python_version:
required: true
type: string
release_commit:
required: true
type: string
release_version:
required: true
type: string
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
BUILD_VERSION: ${{ inputs.release_version }}
CMAKE_BUILD_CONFIG: Debug
COMMIT: ${{ inputs.release_commit }}
FREEBSD_CLANG_VERSION: 19
FREEBSD_VERSION: '15.1'
OPENCPPCOVERAGE_VERSION: '0.9.9.0'
PYTHON_VERSION: ${{ inputs.python_version }}
jobs:
build:
name: Build (${{ matrix.name }})
permissions:
contents: read
runs-on: ${{ matrix.os }}
defaults:
run:
shell: ${{ matrix.shell }}
strategy:
fail-fast: false
matrix:
include:
- name: Linux-GCC
os: ubuntu-latest
shell: bash
kind: unix
build_tools: 'ON'
cc: gcc
cxx: g++
gcov_executable: gcov
- name: Linux-Clang
os: ubuntu-latest
shell: bash
kind: unix
build_tools: 'ON'
cc: clang
cxx: clang++
# Clang writes LLVM coverage notes, so gcovr needs llvm-cov's gcov compatibility mode.
gcov_executable: llvm-cov gcov
- name: macOS
os: macos-latest
shell: bash
kind: unix
build_tools: 'ON'
cc: clang
cxx: clang++
gcov_executable: gcov
- name: FreeBSD
os: ubuntu-latest
shell: freebsd {0}
kind: freebsd
build_tools: 'OFF'
cc: clang19
cxx: clang++19
gcov_executable: llvm-cov19 gcov
- name: Windows-MinGW-UCRT64
os: windows-latest
shell: msys2 {0}
kind: msys2
build_tools: 'ON'
cc: gcc
cxx: g++
msystem: ucrt64
toolchain: ucrt-x86_64
gcov_executable: gcov
- name: Windows-MSVC
os: windows-2022
shell: pwsh
kind: msvc
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: recursive
- name: Get Processor Count
id: processor_count
if: matrix.kind == 'freebsd'
shell: bash
run: |
PROCESSOR_COUNT=$(nproc)
echo "PROCESSOR_COUNT=${PROCESSOR_COUNT}" >> "${GITHUB_OUTPUT}"
echo "PROCESSOR_COUNT: ${PROCESSOR_COUNT}"
- name: Setup FreeBSD
if: matrix.kind == 'freebsd'
uses: vmactions/freebsd-vm@f0552d3b69211736abd97f02ff3d4674c56b73b1 # v1.5.5
with:
arch: x86_64
cpu: ${{ steps.processor_count.outputs.PROCESSOR_COUNT }}
envs: 'BRANCH BUILD_VERSION CMAKE_BUILD_CONFIG COMMIT PYTHON_VERSION'
prepare: |
set -e
python_package_version="$(printf '%s' "${PYTHON_VERSION}" | tr -d '.')"
pkg update
pkg upgrade -y
pkg install -y \
devel/cmake-core \
devel/evdev-proto \
devel/git \
devel/libevdev \
devel/llvm${{ env.FREEBSD_CLANG_VERSION }} \
devel/ninja \
devel/pkgconf \
devel/uv \
"lang/python${python_package_version}" \
textproc/libxml2 \
textproc/libxslt \
x11/libX11 \
x11/libXtst
if ! kldstat -q -m uinput; then
kldload uinput
fi
uinput_node=''
for candidate in /dev/input/uinput /dev/uinput; do
if [ -e "${candidate}" ]; then
uinput_node="${candidate}"
break
fi
done
if [ -z "${uinput_node}" ]; then
echo 'FreeBSD uinput did not expose a supported device node.' >&2
exit 1
fi
chmod a+rw "${uinput_node}"
ln -sf "/usr/local/bin/python${PYTHON_VERSION}" /usr/local/bin/python
release: ${{ env.FREEBSD_VERSION }}
run: |
set -e
uv sync --project third-party/lizardbyte-common --locked --only-group test-c \
--python /usr/local/bin/python \
--no-python-downloads \
--no-install-project
git config --global --add safe.directory '*'
sync: nfs
- name: Setup Dependencies Linux
if: runner.os == 'Linux' && matrix.kind == 'unix'
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
clang \
cmake \
libevdev-dev \
libinput-dev \
libsdl2-dev \
libx11-dev \
libxtst-dev \
llvm \
ninja-build \
pkg-config
kernel_modules_package="linux-modules-extra-$(uname -r)"
if apt-cache show "${kernel_modules_package}" >/dev/null 2>&1; then
sudo apt-get install -y "${kernel_modules_package}"
else
echo "::warning::${kernel_modules_package} is unavailable; relying on the runner image kernel modules."
fi
sudo tee /etc/udev/rules.d/99-libvirtualhid-ci.rules >/dev/null <<'EOF'
SUBSYSTEM=="hidraw", KERNEL=="hidraw*", ATTRS{phys}=="libvirtualhid/uhid/*", MODE="0666", TAG+="uaccess"
SUBSYSTEM=="input", KERNEL=="event*", ATTRS{phys}=="libvirtualhid/uhid/*", MODE="0666", TAG+="uaccess"
SUBSYSTEM=="hidraw", KERNEL=="hidraw*", ATTRS{name}=="(libvirtualhid)*", MODE="0666", TAG+="uaccess"
SUBSYSTEM=="input", KERNEL=="event*", ATTRS{name}=="(libvirtualhid)*", MODE="0666", TAG+="uaccess"
SUBSYSTEM=="input", KERNEL=="event*", ATTRS{name}=="libvirtualhid*", MODE="0666", TAG+="uaccess"
EOF
sudo udevadm control --reload-rules
for module in uhid uinput; do
if ! sudo modprobe "${module}"; then
message="Unable to load ${module}; tests requiring /dev/${module}"
message="${message} will fail unless the device already exists."
echo "::warning::${message}"
fi
done
if ! sudo modprobe hid_playstation; then
echo "::warning::Unable to load hid_playstation; SDL HIDAPI will exercise the native hidraw output path."
fi
for node in /dev/uhid /dev/uinput; do
if [[ -e "${node}" ]]; then
sudo chmod a+rw "${node}"
else
echo "::error::${node} does not exist after module setup."
exit 1
fi
done
- name: Setup Dependencies macOS
if: runner.os == 'macOS'
run: |
brew install \
cmake \
ninja
- name: Setup Dependencies Windows MinGW
if: matrix.kind == 'msys2'
uses: msys2/setup-msys2@66cd2cce69caa17b53920067426061ca1de3a884 # v2.32.0
with:
msystem: ${{ matrix.msystem }}
update: true
install: >-
mingw-w64-${{ matrix.toolchain }}-cmake
mingw-w64-${{ matrix.toolchain }}-ninja
mingw-w64-${{ matrix.toolchain }}-toolchain
- name: Setup Dependencies Windows MSVC
if: matrix.kind == 'msvc'
run: |
choco install opencppcoverage --version=${{ env.OPENCPPCOVERAGE_VERSION }} --yes --no-progress
$openCppCoverageDir = "${env:ProgramFiles}\OpenCppCoverage"
if (!(Test-Path (Join-Path $openCppCoverageDir "OpenCppCoverage.exe"))) {
$openCppCoverageDir = "${env:ProgramFiles(x86)}\OpenCppCoverage"
}
if (!(Test-Path (Join-Path $openCppCoverageDir "OpenCppCoverage.exe"))) {
throw "OpenCppCoverage.exe was not found after Chocolatey install."
}
$openCppCoverageDir | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Setup python
id: setup-python
if: matrix.kind != 'msvc' && matrix.kind != 'freebsd'
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Setup uv
if: matrix.kind != 'msvc' && matrix.kind != 'freebsd'
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
with:
enable-cache: true
- name: Sync Python tools
if: matrix.kind != 'msvc' && matrix.kind != 'freebsd'
env:
MSYS2_PATH_TYPE: inherit
UV_PYTHON: ${{ steps.setup-python.outputs.python-path }}
run: |
uv sync --project third-party/lizardbyte-common --locked --only-group test-c \
--no-python-downloads \
--no-install-project
- name: Configure
if: matrix.kind != 'msvc'
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
BUILD_VERSION: ${{ inputs.release_version }}
CC: ${{ matrix.cc }}
COMMIT: ${{ inputs.release_commit }}
CXX: ${{ matrix.cxx }}
run: |
if [ "${{ matrix.kind }}" = 'freebsd' ]; then
export CC="$(command -v '${{ matrix.cc }}')"
export CXX="$(command -v '${{ matrix.cxx }}')"
fi
cmake \
-DBUILD_DOCS=OFF \
-DBUILD_EXAMPLES=ON \
-DBUILD_TESTS=ON \
-DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_CONFIG} \
-DLIBVIRTUALHID_BUILD_TOOLS=${{ matrix.build_tools || 'ON' }} \
-B cmake-build-ci \
-G Ninja \
-S .
- name: Configure MSVC
if: matrix.kind == 'msvc'
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
BUILD_VERSION: ${{ inputs.release_version }}
COMMIT: ${{ inputs.release_commit }}
run: |
cmake `
-DBUILD_DOCS=OFF `
-DBUILD_EXAMPLES=ON `
-DBUILD_TESTS=ON `
-DLIBVIRTUALHID_BUILD_TOOLS=${{ matrix.build_tools || 'ON' }} `
-A x64 `
-B cmake-build-ci `
-G "Visual Studio 17 2022" `
-S .
- name: Build
run: cmake --build cmake-build-ci --config ${{ env.CMAKE_BUILD_CONFIG }} --parallel 2
- name: Download Windows driver installer artifact
if: runner.os == 'Windows'
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: windows-driver-installer
path: windows-driver-installer
- name: Trust Windows driver catalog signer
if: runner.os == 'Windows'
shell: pwsh
run: |
$certificate = Get-ChildItem `
-LiteralPath .\windows-driver-installer `
-Filter *.cer `
-ErrorAction SilentlyContinue |
Select-Object -First 1
if (!$certificate) {
Write-Host "No separate driver signing certificate artifact was provided."
return
}
$imported = Import-Certificate `
-FilePath $certificate.FullName `
-CertStoreLocation "Cert:\LocalMachine\TrustedPublisher"
foreach ($cert in $imported) {
Write-Host "Trusted driver publisher certificate $($cert.Subject) [$($cert.Thumbprint)]."
}
- name: Install Windows driver installer
if: runner.os == 'Windows'
shell: pwsh
timeout-minutes: 10
run: |
$installer = Get-ChildItem -LiteralPath .\windows-driver-installer -Filter *.msi | Select-Object -First 1
if (!$installer) {
throw "Windows driver installer artifact did not contain an MSI."
}
$logPath = Join-Path $env:RUNNER_TEMP "libvirtualhid-driver-install.log"
$driverLogPath = Join-Path $env:ProgramData "libvirtualhid\install-driver.log"
$setupApiLogPath = Join-Path $env:windir "inf\setupapi.dev.log"
$process = Start-Process `
-FilePath msiexec.exe `
-ArgumentList @("/i", $installer.FullName, "/qn", "/norestart", "/L*v", $logPath) `
-PassThru `
-NoNewWindow
if (!$process.WaitForExit([int] [TimeSpan]::FromMinutes(5).TotalMilliseconds)) {
Get-Content -LiteralPath $logPath -Tail 200 -ErrorAction SilentlyContinue
Get-Content -LiteralPath $driverLogPath -Tail 200 -ErrorAction SilentlyContinue
Get-Content -LiteralPath $setupApiLogPath -Tail 300 -ErrorAction SilentlyContinue
Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue
throw "Windows driver installer timed out after 5 minutes."
}
if ($process.ExitCode -notin @(0, 3010)) {
Get-Content -LiteralPath $logPath -ErrorAction SilentlyContinue
Get-Content -LiteralPath $driverLogPath -ErrorAction SilentlyContinue
Get-Content -LiteralPath $setupApiLogPath -Tail 300 -ErrorAction SilentlyContinue
throw "Windows driver installer exited with code $($process.ExitCode)."
}
- name: Enable GitHub Actions evaluation window
if: runner.os == 'Windows'
shell: pwsh
run: |
$serviceName = "libvirtualhid_broker"
$serviceRegistryPath = "HKLM:\SYSTEM\CurrentControlSet\Services\$serviceName"
New-ItemProperty `
-LiteralPath $serviceRegistryPath `
-Name Environment `
-PropertyType MultiString `
-Value @("GITHUB_ACTIONS=true") `
-Force | Out-Null
Restart-Service -Name $serviceName -Force
(Get-Service -Name $serviceName).WaitForStatus("Running", [TimeSpan]::FromSeconds(15))
- name: Verify Windows test driver package
if: runner.os == 'Windows'
shell: pwsh
run: |
if ("${{ matrix.kind }}" -eq "msys2") {
$env:PATH = "C:\msys64\${{ matrix.msystem }}\bin;C:\msys64\usr\bin;$env:PATH"
$gamepadAdapterPath = "$env:GITHUB_WORKSPACE\cmake-build-ci\examples\gamepad_adapter.exe"
} else {
$gamepadAdapterPath = Join-Path `
"$env:GITHUB_WORKSPACE\cmake-build-ci\examples\$env:CMAKE_BUILD_CONFIG" `
"gamepad_adapter.exe"
}
$profiles = @("generic", "xone", "xseries", "ds4", "ds5", "switch")
foreach ($profile in $profiles) {
.\scripts\windows\test-installed-driver.ps1 `
-GamepadAdapterPath $gamepadAdapterPath `
-Profile $profile `
-Verbose
}
- name: Run gamepad adapter example
run: cmake --build cmake-build-ci --config ${{ env.CMAKE_BUILD_CONFIG }} --target run_gamepad_adapter_example
- name: Prepare report directory
run: cmake -E make_directory cmake-build-ci/reports
- name: Run tests
id: test
if: matrix.kind != 'msvc'
run: |
cd cmake-build-ci/tests
./test_libvirtualhid --gtest_color=yes --gtest_output=xml:../reports/junit.xml
- name: Run tests MSVC
id: test_msvc
if: matrix.kind == 'msvc'
run: |
$openCppCoverage = (Get-Command OpenCppCoverage.exe -ErrorAction SilentlyContinue).Source
if (!$openCppCoverage) {
$candidates = @(
"${env:ProgramFiles}\OpenCppCoverage\OpenCppCoverage.exe",
"${env:ProgramFiles(x86)}\OpenCppCoverage\OpenCppCoverage.exe"
)
$openCppCoverage = $candidates | Where-Object { Test-Path $_ } | Select-Object -First 1
}
if (!$openCppCoverage) {
throw "OpenCppCoverage.exe was not found."
}
# The broker test hook compiles a private copy only for failure injection.
& $openCppCoverage `
--sources "$env:GITHUB_WORKSPACE\examples" `
--sources "$env:GITHUB_WORKSPACE\src" `
--sources "$env:GITHUB_WORKSPACE\tools" `
--excluded_sources "$env:GITHUB_WORKSPACE\src\platform\windows\broker" `
"--export_type=cobertura:$env:GITHUB_WORKSPACE\cmake-build-ci\reports\coverage.xml" `
--working_dir "$env:GITHUB_WORKSPACE\cmake-build-ci\tests" `
-- `
"$env:GITHUB_WORKSPACE\cmake-build-ci\tests\$env:CMAKE_BUILD_CONFIG\test_libvirtualhid.exe" `
--gtest_color=yes `
"--gtest_output=xml:$env:GITHUB_WORKSPACE\cmake-build-ci\reports\junit.xml"
- name: Normalize MSVC coverage paths
if: >-
always() &&
matrix.kind == 'msvc' &&
(steps.test_msvc.outcome == 'success' || steps.test_msvc.outcome == 'failure')
run: |
$coveragePath = Join-Path $env:GITHUB_WORKSPACE "cmake-build-ci\reports\coverage.xml"
if (!(Test-Path $coveragePath)) {
return
}
[xml] $coverage = Get-Content $coveragePath
$workspace = $env:GITHUB_WORKSPACE.Replace('\', '/')
foreach ($node in $coverage.SelectNodes('//*[@filename]')) {
$filename = $node.GetAttribute('filename').Replace('\', '/')
if ($filename.StartsWith("${workspace}/")) {
$filename = $filename.Substring($workspace.Length + 1)
}
$node.SetAttribute('filename', $filename)
}
foreach ($source in $coverage.SelectNodes('//source')) {
$source.InnerText = '.'
}
$coverage.Save($coveragePath)
- name: Generate gcov report
id: test_report
if: >-
always() &&
matrix.kind != 'msvc' &&
(steps.test.outcome == 'success' || steps.test.outcome == 'failure')
env:
MSYS2_PATH_TYPE: inherit
run: |
cd cmake-build-ci
# The broker test hook compiles a private copy only for failure injection.
uv run --project ../third-party/lizardbyte-common --locked --no-sync gcovr . -r .. \
--filter ../examples/ \
--filter ../src/ \
--filter ../tools/ \
--gcov-executable "${{ matrix.gcov_executable }}" \
--exclude ../src/platform/windows/broker/ \
--exclude ../tests/ \
--exclude ../third-party/ \
--exclude-noncode-lines \
--exclude-throw-branches \
--exclude-unreachable-branches \
--verbose \
--xml-pretty \
-o reports/coverage.xml
- name: Uninstall Windows driver installer with an open consumer handle
if: >-
always() &&
runner.os == 'Windows'
shell: pwsh
run: |
$installer = Get-ChildItem -LiteralPath .\windows-driver-installer `
-Filter *.msi `
-ErrorAction SilentlyContinue |
Select-Object -First 1
if ($installer) {
$nativeMethods = @'
using System;
using System.Runtime.InteropServices;
public static class LibVirtualHidUninstallTest
{
public const uint GenericReadWriteAccess = 0xC0000000;
[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern IntPtr CreateFile(
string fileName,
uint desiredAccess,
uint shareMode,
IntPtr securityAttributes,
uint creationDisposition,
uint flagsAndAttributes,
IntPtr templateFile);
[DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CloseHandle(IntPtr handle);
}
'@
Add-Type -TypeDefinition $nativeMethods
$invalidHandle = [IntPtr]::new(-1)
$deviceHandle = [LibVirtualHidUninstallTest]::CreateFile(
"\\.\LibVirtualHid",
[LibVirtualHidUninstallTest]::GenericReadWriteAccess,
0x00000003,
[IntPtr]::Zero,
3,
0x40000080,
[IntPtr]::Zero
)
if ($deviceHandle -eq $invalidHandle) {
Write-Warning "Unable to hold the libvirtualhid control device; continuing cleanup."
} else {
Write-Host "Holding the libvirtualhid control device open during MSI uninstall."
}
$logPath = Join-Path $env:RUNNER_TEMP "libvirtualhid-driver-uninstall.log"
$driverLogPath = Join-Path $env:ProgramData "libvirtualhid\uninstall-driver.log"
try {
$process = Start-Process `
-FilePath msiexec.exe `
-ArgumentList @("/x", $installer.FullName, "/qn", "/norestart", "/L*v", $logPath) `
-PassThru `
-NoNewWindow
if (!$process.WaitForExit([int] [TimeSpan]::FromMinutes(5).TotalMilliseconds)) {
Get-Content -LiteralPath $logPath -Tail 200 -ErrorAction SilentlyContinue
Get-Content -LiteralPath $driverLogPath -Tail 200 -ErrorAction SilentlyContinue
Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue
throw "Windows driver installer uninstall timed out after 5 minutes."
}
if ($process.ExitCode -notin @(0, 3010)) {
Get-Content -LiteralPath $logPath -ErrorAction SilentlyContinue
Get-Content -LiteralPath $driverLogPath -ErrorAction SilentlyContinue
throw "Windows driver installer uninstall exited with code $($process.ExitCode)."
}
} finally {
if ($deviceHandle -ne $invalidHandle) {
[void] [LibVirtualHidUninstallTest]::CloseHandle($deviceHandle)
}
}
}
- name: Install
run: cmake --install cmake-build-ci --config ${{ env.CMAKE_BUILD_CONFIG }} --prefix cmake-build-ci/install
- name: Configure tests-disabled FreeBSD package
if: matrix.kind == 'freebsd'
run: |
set -e
export CC="$(command -v '${{ matrix.cc }}')"
export CXX="$(command -v '${{ matrix.cxx }}')"
cmake \
-DBUILD_DOCS=OFF \
-DBUILD_EXAMPLES=OFF \
-DBUILD_TESTS=OFF \
-DCMAKE_BUILD_TYPE:STRING=Release \
-DCMAKE_INSTALL_PREFIX="${GITHUB_WORKSPACE}/cmake-build-package/install" \
-DLIBVIRTUALHID_BUILD_TOOLS=OFF \
-DLIBVIRTUALHID_ENABLE_PACKAGING=OFF \
-B cmake-build-package \
-G Ninja \
-S .
- name: Build and install FreeBSD package
if: matrix.kind == 'freebsd'
run: |
cmake --build cmake-build-package --parallel 2
cmake --install cmake-build-package
test ! -d cmake-build-package/install/lib/cmake/lizardbyte-common
- name: Configure, compile, and link FreeBSD downstream consumer
if: matrix.kind == 'freebsd'
run: |
set -e
export CC="$(command -v '${{ matrix.cc }}')"
export CXX="$(command -v '${{ matrix.cxx }}')"
cmake \
-DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF \
-DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF \
-DCMAKE_PREFIX_PATH="${GITHUB_WORKSPACE}/cmake-build-package/install" \
-B cmake-build-package-consumer \
-G Ninja \
-S tests/package-consumer
cmake --build cmake-build-package-consumer --parallel 2
- name: Upload report artifact
if: >-
always() &&
(
steps.test_report.outcome == 'success' ||
steps.test_msvc.outcome == 'success' ||
steps.test_msvc.outcome == 'failure'
)
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: reports-${{ matrix.name }}
path: cmake-build-ci/reports
if-no-files-found: error
package_consumer:
name: Installed Package Consumer (Linux)
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: recursive
- name: Install package dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
cmake \
libevdev-dev \
libx11-dev \
libxtst-dev \
ninja-build \
pkg-config
# This intentionally uses a separate BUILD_TESTS=OFF configuration. Test
# builds add lizardbyte-common for test support and therefore cannot prove
# that a normal installed package is independently consumable. Release also
# keeps an optimized GCC library build under warnings-as-errors without
# changing or publishing the ordinary library artifacts.
- name: Configure tests-disabled package
run: |
cmake \
-DBUILD_DOCS=OFF \
-DBUILD_EXAMPLES=OFF \
-DBUILD_TESTS=OFF \
-DCMAKE_BUILD_TYPE:STRING=Release \
-DCMAKE_INSTALL_PREFIX="${GITHUB_WORKSPACE}/cmake-build-package/install" \
-DLIBVIRTUALHID_BUILD_TOOLS=OFF \
-DLIBVIRTUALHID_ENABLE_PACKAGING=OFF \
-B cmake-build-package \
-G Ninja \
-S .
- name: Build and install package
run: |
cmake --build cmake-build-package --parallel 2
cmake --install cmake-build-package
test ! -d cmake-build-package/install/lib/cmake/lizardbyte-common
# A separate CMake project and real symbol reference force find_package,
# imported-target generation, compilation, and the final static-library link.
- name: Configure, compile, and link downstream consumer
run: |
cmake \
-DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF \
-DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF \
-DCMAKE_PREFIX_PATH="${GITHUB_WORKSPACE}/cmake-build-package/install" \
-B cmake-build-package-consumer \
-G Ninja \
-S tests/package-consumer
cmake --build cmake-build-package-consumer --parallel 2