From 68ef393d255152797d99a271487839d5a70139ab Mon Sep 17 00:00:00 2001 From: Maxime Bittan Date: Wed, 29 Jul 2020 12:32:05 +0200 Subject: [PATCH] .buildkite: run.sh: Install lpc_checksum package The sanitycheck tests are all failing for the lpcxpresso11u68 board because the lpc_checksum, a new python script requirement introduced by this board, is not present in the build environment. This commit attempt to fix this issue by installing lpc_checksum before running sanitycheck. Signed-off-by: Maxime Bittan --- .buildkite/run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.buildkite/run.sh b/.buildkite/run.sh index f36fa38cef1..8960f061799 100755 --- a/.buildkite/run.sh +++ b/.buildkite/run.sh @@ -21,6 +21,10 @@ echo "" echo "--- ccache stats at start" ccache -s +# Temporary fix: Install lpc_checksum, needed to build images for +# lpcxpresso11u68 boards +pip3 install lpc_checksum + if [ -n "${DAILY_BUILD}" ]; then SANITYCHECK_OPTIONS=" --inline-logs -N --build-only --all --retry-failed 3 -v " echo "--- DAILY BUILD"