[CI] Skip SSTV examples for Arduino Uno (not enough RAM)

pull/728/head
jgromes 2023-04-10 11:20:35 +02:00
rodzic 390b425b39
commit cccc9742bb
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -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