Skip to content

Commit d80d2a2

Browse files
committed
Rename CapacitiveSensor library folder
It must be renames so that it won't have a hyphen in the folder name, which causes verification to hang with Arduino IDE 1.5.2 - 1.5.6-r2.
1 parent ccbf030 commit d80d2a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ before_install:
8686
# - install_library
8787
# Test library install from .zip file. A non-GitHub library download must be used because GitHub appends -{branch name} or -{release version} to the .zip downloads and having a library folder installed whos name contains "-" causes arduino 1.5.6 or older to hang.
8888
- install_library "https://bitbucket.org/teckel12/arduino-new-ping/downloads/NewPing_v1.8.zip"
89-
# Test library install from .zip file with rename. If the rename doesn't work then any job verifying with Arduino IDE 1.5.6 or older will hang because GitHub changes the folder name to MPU9250-master, which is not a valid folder name on those IDE versions.
89+
# Test library install from .zip file with rename. If the rename doesn't work then any job verifying with Arduino IDE 1.5.2 - 1.5.6-r2 will hang because GitHub changes the folder name to MPU9250-master, which is not a valid folder name on those IDE versions.
9090
- install_library "https://github.com/brianc118/MPU9250/archive/master.zip" "MPU9250"
91-
# Test library install from .zip file/folder that has a dot in the name
92-
- install_library "https://github.com/arduino-libraries/CapacitiveSensor/archive/0.5.1.zip"
91+
# Test library install from .zip file/folder that has a dot in the name. It must be renames so that it won't have a hyphen in the folder name, which causes verification to hang with Arduino IDE 1.5.2 - 1.5.6-r2.
92+
- install_library "https://github.com/arduino-libraries/CapacitiveSensor/archive/0.5.1.zip" "CapacitiveSensor"
9393
# Test library install from git repo
9494
- install_library "https://github.com/sfrwmaker/WirelessOregonV2.git"
9595
# Test library install from git repo with branch
@@ -139,7 +139,7 @@ script:
139139
- cd "${SKETCHBOOK_FOLDER}/libraries/MPU9250/examples/MPU9250/"
140140
- build_sketch "MPU9250.ino" "arduino:avr:uno" "false" "newest"
141141
# Test library installed from .zip with dot in the folder name
142-
- build_sketch "${SKETCHBOOK_FOLDER}/libraries/CapacitiveSensor-0.5.1/examples/CapacitiveSensorSketch/CapacitiveSensorSketch.pde" "arduino:avr:uno" "false" "newest"
142+
- build_sketch "${SKETCHBOOK_FOLDER}/libraries/CapacitiveSensor/examples/CapacitiveSensorSketch/CapacitiveSensorSketch.pde" "arduino:avr:uno" "false" "newest"
143143
# Test library installed from .zip
144144
- build_sketch "${SKETCHBOOK_FOLDER}/libraries/NewPing/examples/NewPingExample/NewPingExample.pde" "arduino:avr:uno" "false" "newest"
145145
# Test library installed from .git

0 commit comments

Comments
 (0)