fix ci build for rp2040

This commit is contained in:
hathach 2021-03-01 21:34:45 +07:00
parent 26d9897551
commit 908a3d128f

View File

@ -98,12 +98,12 @@ def build_size(example, board):
def skip_example(example, board):
ex_dir = 'examples/' + example
# family CMake
board_mk = 'hw/bsp/{}/family.cmake'.format(family)
# family.mk
board_mk = 'hw/bsp/{}/family.mk'.format(family)
# family.cmake
if not os.path.exists(board_mk):
board_mk = 'hw/bsp/{}/family.cmake'.format(family)
board_mk = 'hw/bsp/{}/family.mk'.format(family)
with open(board_mk) as mk:
mk_contents = mk.read()