From f073a5ecd37a705fae89400a50ff24fa985c895a Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 7 Apr 2020 11:15:59 +0700 Subject: CI: seperate esp32s2 into different job skip esp32s in build_all.py script --- tools/build_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/build_all.py b/tools/build_all.py index ba918425a..c78192d63 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -57,8 +57,8 @@ def skip_example(example, board): with open(board_mk) as mk: mk_contents = mk.read() - # Skip ESP32-S2 board if example is not FreeRTOS one - if 'freertos' not in example and 'CROSS_COMPILE = xtensa-esp32s2-elf-' in mk_contents: + # Skip all ESP32-S2 board for CI + if 'CROSS_COMPILE = xtensa-esp32s2-elf-' in mk_contents: return 1 # Skip if CFG_TUSB_MCU in board.mk to match skip file -- cgit v1.3.1