Skip to content

Commit

Permalink
[CI] fix travis not failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua committed Jul 25, 2020
1 parent 0457339 commit 5da38ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ script:
- stringContain() { [ -z "${2##*$1*}" ]; }
# selectable board tests @Rotzbua
# prints only warnings and errors, to show all remove "1>/dev/null"
- board="arduino_avr"; if stringContain "$board" "$TESTBOARD"; then echo "check board $board"; ouput=$(platformio ci --lib=. --board=uno --board=megaatmega1280); echo "--<Result>--"; echo "$ouput" | grep --no-messages --ignore-case -E "^(PLATFORM|HARDWARE|RAM|Flash|Device|Data|Program|text|[0-9])"; else echo "skip board test of $board"; fi
- board="arduino_arm"; if stringContain "$board" "$TESTBOARD"; then echo "check board $board"; ouput=$(platformio ci --lib=. --board=due --board=zero); echo "--<Result>--"; echo "$ouput" | grep --no-messages --ignore-case -E "^(PLATFORM|HARDWARE|RAM|Flash|Device|Data|Program|text|[0-9])"; else echo "skip board test of $board"; fi
- board="esp"; if stringContain "$board" "$TESTBOARD"; then echo "check board $board"; ouput=$(platformio ci --lib=. --board=d1_mini); echo "--<Result>--"; echo "$ouput" | grep --no-messages --ignore-case -E "^(PLATFORM|HARDWARE|RAM|Flash|Device|Data|Program|text|[0-9])"; else echo "skip board test of $board"; fi
- board="arduino_avr"; if stringContain "$board" "$TESTBOARD"; then echo "check board $board"; ouput=$(platformio ci --lib=. --board=uno --board=megaatmega1280) || exit $?; echo "--<Result>--"; echo "$ouput" | grep --no-messages --ignore-case -E "^(PLATFORM|HARDWARE|RAM|Flash|Device|Data|Program|text|[0-9])"; else echo "skip board test of $board"; fi
- board="arduino_arm"; if stringContain "$board" "$TESTBOARD"; then echo "check board $board"; ouput=$(platformio ci --lib=. --board=due --board=zero) || exit $?; echo "--<Result>--"; echo "$ouput" | grep --no-messages --ignore-case -E "^(PLATFORM|HARDWARE|RAM|Flash|Device|Data|Program|text|[0-9])"; else echo "skip board test of $board"; fi
- board="esp"; if stringContain "$board" "$TESTBOARD"; then echo "check board $board"; ouput=$(platformio ci --lib=. --board=d1_mini) || exit $?; echo "--<Result>--"; echo "$ouput" | grep --no-messages --ignore-case -E "^(PLATFORM|HARDWARE|RAM|Flash|Device|Data|Program|text|[0-9])"; else echo "skip board test of $board"; fi

0 comments on commit 5da38ea

Please sign in to comment.