fwupd/contrib/ci/centos.sh
Richard Hughes ee2e2c3674 uefi: Rename to uefi-capsule
Rename the plugin to make it clearer of the scope.

Based on a patch from Mario Limonciello <mario.limonciello@dell.com>
2021-01-05 15:31:22 +00:00

29 lines
502 B
Bash
Executable File

#!/bin/sh
set -e
set -x
#clone test firmware
if [ "$CI_NETWORK" = "true" ]; then
./contrib/ci/get_test_firmware.sh
export G_TEST_SRCDIR=`pwd`/fwupd-test-firmware/installed-tests
fi
#build
rm -rf build
mkdir -p build
cd build
meson .. \
--werror \
-Dplugin_uefi_capsule=false \
-Dplugin_dell=false \
-Dplugin_modem_manager=false \
-Dplugin_synaptics=true \
-Dplugin_flashrom=true \
-Dintrospection=true \
-Dgtkdoc=true \
-Dpkcs7=false \
-Dman=true
ninja-build -v
ninja-build test -v
cd ..