[CI] Skip SSTV examples for Arduino Uno (not enough RAM)
This commit is contained in:
parent
390b425b39
commit
cccc9742bb
1 changed files with 5 additions and 1 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue