-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Both CIs to run parallel jobs (#3120)
- Loading branch information
Showing
4 changed files
with
131 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,64 @@ | ||
#!/bin/bash | ||
|
||
# CMake Test | ||
echo -e "travis_fold:start:check_cmakelists" | ||
tools/check_cmakelists.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:check_cmakelists" | ||
if [ ! -z "$TRAVIS_TAG" ]; then | ||
echo "Skipping Test: Tagged build" | ||
exit 0 | ||
fi | ||
|
||
CHUNK_INDEX=$1 | ||
CHUNKS_CNT=$2 | ||
BUILD_PIO=0 | ||
if [ "$#" -lt 2 ]; then | ||
echo "Building all sketches" | ||
CHUNK_INDEX=0 | ||
CHUNKS_CNT=1 | ||
BUILD_PIO=1 | ||
fi | ||
if [ "$CHUNKS_CNT" -le 0 ]; then | ||
CHUNK_INDEX=0 | ||
CHUNKS_CNT=1 | ||
BUILD_PIO=1 | ||
fi | ||
if [ "$CHUNK_INDEX" -gt "$CHUNKS_CNT" ]; then | ||
CHUNK_INDEX=$CHUNKS_CNT | ||
fi | ||
if [ "$CHUNK_INDEX" -eq "$CHUNKS_CNT" ]; then | ||
BUILD_PIO=1 | ||
fi | ||
|
||
# ArduinoIDE Test | ||
echo -e "travis_fold:start:prep_arduino_ide" | ||
tools/prep-arduino-ide.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:prep_arduino_ide" | ||
# CMake Test | ||
if [ "$CHUNK_INDEX" -eq 0 ]; then | ||
echo -e "travis_fold:start:check_cmakelists" | ||
tools/check_cmakelists.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:check_cmakelists" | ||
fi | ||
|
||
echo -e "travis_fold:start:test_arduino_ide" | ||
tools/test-arduino-ide.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:test_arduino_ide" | ||
if [ "$BUILD_PIO" -eq 0 ]; then | ||
# ArduinoIDE Test | ||
echo -e "travis_fold:start:prep_arduino_ide" | ||
tools/prep-arduino-ide.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:prep_arduino_ide" | ||
|
||
echo -e "travis_fold:start:size_report" | ||
cat size.log | ||
echo -e "travis_fold:end:size_report" | ||
echo -e "travis_fold:start:test_arduino_ide" | ||
tools/test-arduino-ide.sh $CHUNK_INDEX $CHUNKS_CNT | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:test_arduino_ide" | ||
|
||
# PlatformIO Test | ||
echo -e "travis_fold:start:prep_platformio" | ||
tools/prep-platformio.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:prep_platformio" | ||
echo -e "travis_fold:start:size_report" | ||
cat size.log | ||
echo -e "travis_fold:end:size_report" | ||
else | ||
# PlatformIO Test | ||
echo -e "travis_fold:start:prep_platformio" | ||
cd tools && python get.py && cd .. | ||
tools/prep-platformio.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:prep_platformio" | ||
|
||
echo -e "travis_fold:start:test_platformio" | ||
tools/test-platformio.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:test_platformio" | ||
echo -e "travis_fold:start:test_platformio" | ||
tools/test-platformio.sh | ||
if [ $? -ne 0 ]; then exit 1; fi | ||
echo -e "travis_fold:end:test_platformio" | ||
fi |