Anastasia Klimchuk has submitted this change. ( https://review.coreboot.org/c/flashrom/+/85097?usp=email )
Change subject: build script: Add rpmc option to always be enabled on Jenkins ......................................................................
build script: Add rpmc option to always be enabled on Jenkins
This needs libcrypto dependency to be present on CI container.
Change-Id: Ib736386a34d184f696a47272957b665c8fe26c06 Signed-off-by: Anastasia Klimchuk aklm@flashrom.org Reviewed-on: https://review.coreboot.org/c/flashrom/+/85097 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Stefan Reinauer stefan.reinauer@coreboot.org --- M test_build.sh 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Stefan Reinauer: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/test_build.sh b/test_build.sh index 8c041f0..968f259 100755 --- a/test_build.sh +++ b/test_build.sh @@ -26,7 +26,7 @@
build_meson () { build_dir=out - meson_opts="-Dtests=enabled -Dman-pages=enabled -Ddocumentation=enabled" + meson_opts="-Dtests=enabled -Drpmc=enabled -Dman-pages=enabled -Ddocumentation=enabled" ninja_opts="-j $(nproc)"
rm -rf ${build_dir}