Skip to content

Commit f4ad262

Browse files
committed
update travis and build script to not fail
1 parent c66b54a commit f4ad262

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.travis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ os:
88
- linux
99

1010
script:
11-
- set -e
11+
#- set -e
12+
- echo -e "travis_fold:start:sketch_test_env_prepare"
1213
- wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
1314
- tar xf arduino.tar.xz
1415
- mv arduino-nightly $HOME/arduino_ide
@@ -32,11 +33,15 @@ script:
3233
- echo -e "travis_fold:end:size_report"
3334

3435
# test library examples with PlatformIO
36+
- echo -e "travis_fold:start:platformio_test_env_prepare"
3537
- pip install -U https://github.com/platformio/platformio/archive/develop.zip
3638
- platformio platform install https://github.com/platformio/platform-espressif32.git#feature/stage
3739
- sed -i 's/https:\/\/github\.com\/espressif\/arduino-esp32\.git/*/' ~/.platformio/platforms/espressif32_stage/platform.json
3840
- ln -s $TRAVIS_BUILD_DIR ~/.platformio/packages/framework-arduinoespressif32
41+
- echo -e "travis_fold:end:platformio_test_env_prepare"
42+
- echo -e "travis_fold:start:platformio_test"
3943
- "python -c \"import glob,os,subprocess,sys; map(lambda p: (sys.stdout.write('Library example: %s\\n' % p), subprocess.call(['pio', 'ci', p, '--board', 'esp32dev'])), set([os.path.dirname(p) for p in glob.glob('libraries/*/examples/*/*.ino') + glob.glob('libraries/*/examples/*/*/*.ino')]))\""
44+
- echo -e "travis_fold:end:platformio_test"
4045

4146
notifications:
4247
email:

tools/common.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function print_size_info()
3131

3232
function build_sketches()
3333
{
34-
set +e
34+
#set +e
3535
local arduino=$1
3636
local srcpath=$2
3737
local build_arg=$3
@@ -56,7 +56,7 @@ function build_sketches()
5656
fi
5757
echo -e "\n ------------ Building $sketch ------------ \n";
5858
# $arduino --verify $sketch;
59-
echo "$build_cmd $sketch"
59+
#echo "$build_cmd $sketch"
6060
time ($build_cmd $sketch >build.log)
6161
local result=$?
6262
if [ $result -ne 0 ]; then
@@ -68,5 +68,5 @@ function build_sketches()
6868
rm build.log
6969
print_size_info $build_dir/*.elf >>size.log
7070
done
71-
set -e
71+
#set -e
7272
}

0 commit comments

Comments
 (0)