Skip to content

Commit b0b21f7

Browse files
committed
remove unnecessary build steps from travis
1 parent 77a04a0 commit b0b21f7

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

.travis.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,8 @@ language: bash
33
os:
44
- linux
55

6-
addons:
7-
apt:
8-
sources:
9-
- ubuntu-toolchain-r-test
10-
packages:
11-
- g++-4.8
12-
136
script:
147
- set -e
15-
- export CXX="g++-4.8" CC="gcc-4.8" GCOV="gcov-4.8"
16-
- echo -e "travis_fold:start:host_tests"
17-
- pushd $TRAVIS_BUILD_DIR/tests/host
18-
- make
19-
- make clean-objects
20-
- echo -e "travis_fold:end:host_tests"
21-
- echo -e "travis_fold:start:sketch_test_env_prepare"
22-
- popd
238
- wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
249
- tar xf arduino.tar.xz
2510
- mv arduino-nightly $HOME/arduino_ide
@@ -33,7 +18,6 @@ script:
3318
- which arduino
3419
- cd $TRAVIS_BUILD_DIR
3520
- source tools/common.sh
36-
- install_libraries
3721
- echo -e "travis_fold:end:sketch_test_env_prepare"
3822
- echo -e "travis_fold:start:sketch_test"
3923
- build_sketches $HOME/arduino_ide $TRAVIS_BUILD_DIR/libraries "-l $HOME/Arduino/libraries"

tools/common.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,3 @@ function build_sketches()
7373
done
7474
set -e
7575
}
76-
77-
function install_libraries()
78-
{
79-
mkdir -p $HOME/Arduino/libraries
80-
pushd $HOME/Arduino/libraries
81-
82-
# install ArduinoJson library
83-
#wget https://github.com/bblanchon/ArduinoJson/releases/download/v4.6.1/ArduinoJson-v4.6.1.zip && unzip ArduinoJson-v4.6.1.zip
84-
85-
popd
86-
}

0 commit comments

Comments
 (0)