From aabbdb79e6842a4ff4fd8df9a9628fb672a51f77 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Wed, 26 Oct 2016 08:08:42 -0400 Subject: [PATCH] scripts: limit compare_footprint script to a defined group of boards This script is part of the CI job and currently is run on all defined boards. We are limited on resources in the CI infra and this part is taking way too much time. We now select a group of boards to look at instead of just building everything. Change-Id: Ifd634e74426c9cc801032b26ad9a9a94a0e55960 Signed-off-by: Anas Nashif --- scripts/compare_footprint | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/compare_footprint b/scripts/compare_footprint index 2c0ad3ea5b0..8c72f020d54 100755 --- a/scripts/compare_footprint +++ b/scripts/compare_footprint @@ -119,7 +119,15 @@ def run_sanity_footprint(commit=None, cwd=os.environ.get('ZEPHYR_BASE'), output_file=None): if not output_file: output_file = sanity_results_filename(commit) - cmd = '/bin/bash -c "source ./zephyr-env.sh && ./scripts/sanitycheck --inline-logs --all' + cmd = '/bin/bash -c "source ./zephyr-env.sh && ./scripts/sanitycheck --inline-logs ' + # ARM + cmd += ' -p frdm_k64f -p nrf51_pca10028 -p nrf52_pca10040 ' + # X86 + cmd += ' -p quark_d2000_crb -p quark_se_c1000_devboard ' + # ARC + cmd += ' -p quark_se_c1000_ss_devboard ' + # NIOS2 + cmd += ' -p altera_max10 ' cmd += ' --build-only --tag footprint -o %s"' % output_file logger.debug('Sanity (%s) %s' %(commit, cmd))