From 7663928e49956cd17da354bbe676b774830ec873 Mon Sep 17 00:00:00 2001 From: Renz Bagaporo Date: Thu, 5 Mar 2020 11:04:01 +0800 Subject: [PATCH] ci: add test for partition_table target --- tools/ci/test_build_system_cmake.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/ci/test_build_system_cmake.sh b/tools/ci/test_build_system_cmake.sh index 974b6281f7..ea88b479a9 100755 --- a/tools/ci/test_build_system_cmake.sh +++ b/tools/ci/test_build_system_cmake.sh @@ -395,6 +395,10 @@ function run_tests() (grep '"command"' build/compile_commands.json | grep -v mfix-esp32-psram-cache-issue) && failure "All commands in compile_commands.json should use PSRAM cache workaround" rm -r build + print_status "Displays partition table when executing target partition_table" + idf.py partition_table | grep -E "# Espressif .+ Partition Table" + rm -r build + print_status "Make sure a full build never runs '/usr/bin/env python' or similar" OLDPATH="$PATH" PYTHON="$(which python)"