mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-03 03:56:30 +00:00
22 lines
392 B
Bash
Executable File
22 lines
392 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
#install dependencies
|
|
xbps-install -Suy python3
|
|
./contrib/ci/fwupd_setup_helpers.py install-dependencies --yes -o void
|
|
|
|
#clone test firmware if necessary
|
|
. ./contrib/ci/get_test_firmware.sh
|
|
|
|
#build
|
|
rm -rf build
|
|
meson build \
|
|
-Dgusb:tests=false \
|
|
-Dgcab:docs=false \
|
|
-Dconsolekit=false \
|
|
-Dsystemd=false \
|
|
-Doffline=false \
|
|
-Delogind=true
|
|
ninja -C build test -v
|