From cccc9742bbd1c62150b48acf7ec74b721fb9ffc0 Mon Sep 17 00:00:00 2001 From: jgromes Date: Mon, 10 Apr 2023 11:20:35 +0200 Subject: [PATCH] [CI] Skip SSTV examples for Arduino Uno (not enough RAM) --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 77630a1d..f05c5c5e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -70,7 +70,11 @@ jobs: echo "warnings=all" >> $GITHUB_OUTPUT # platform-dependent settings - extra board options, board index URLs, skip patterns etc. - if [[ "${{ contains(matrix.board, 'arduino:avr:mega') }}" == "true" ]]; then + if [[ "${{ contains(matrix.board, 'arduino:avr:uno') }}" == "true" ]]; then + # Arduino Uno + echo "skip-pattern=(STM32WL|SSTV)" >> $GITHUB_OUTPUT + + elif [[ "${{ contains(matrix.board, 'arduino:avr:mega') }}" == "true" ]]; then # Arduino Mega echo "options=':cpu=atmega2560'" >> $GITHUB_OUTPUT