summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2016-10-26 08:08:42 -0400
committerAnas Nashif <nashif@linux.intel.com>2016-10-26 17:18:38 +0000
commitaabbdb79e6842a4ff4fd8df9a9628fb672a51f77 (patch)
tree57c587d6c40184bf966311c579372ed83a7458da /scripts
parent431607c20a01d16011754b1f5af64d9f2d07423b (diff)
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 <anas.nashif@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/compare_footprint10
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/compare_footprint b/scripts/compare_footprint
index 2c0ad3ea5..8c72f020d 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))