Skip to content

Commit bb56db6

Browse files
committed
fix mac install
1 parent 8b96be3 commit bb56db6

File tree

6 files changed

+2
-213
lines changed

6 files changed

+2
-213
lines changed

tools/ci/install-arduino-ide.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ if [ ! -d "$ARDUINO_IDE_PATH" ]; then
6363
unzip "arduino.$ARCHIVE_FORMAT" > /dev/null
6464
if [ $? -ne 0 ]; then exit 1; fi
6565
if [ "$OS_IS_MACOS" == "1" ]; then
66-
mv "Arduino.app" "$HOME/Arduino.app"
66+
mv "Arduino.app" "/Applications/Arduino.app"
6767
else
6868
mv arduino-nightly "$ARDUINO_IDE_PATH"
6969
fi

tools/ci/on-push.sh

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ if [ ! -z "$TRAVIS_TAG" ]; then
55
exit 0
66
fi
77

8-
#GITHUB_REPOSITORY
9-
#GITHUB_WORKSPACE
10-
118
if [ ! -z "$GITHUB_WORKSPACE" ]; then
129
export TRAVIS_BUILD_DIR="$GITHUB_WORKSPACE"
1310
export TRAVIS_REPO_SLUG="$GITHUB_REPOSITORY"
@@ -42,21 +39,11 @@ fi
4239

4340
if [ "$BUILD_PIO" -eq 0 ]; then
4441
# ArduinoIDE Test
45-
# tools/ci/prep-arduino-ide.sh
46-
# if [ $? -ne 0 ]; then exit 1; fi
47-
# tools/ci/test-arduino-ide.sh $CHUNK_INDEX $CHUNKS_CNT
48-
# if [ $? -ne 0 ]; then exit 1; fi
49-
# cat size.log
5042
source ./tools/ci/install-arduino-ide.sh
5143
source ./tools/ci/install-arduino-core-esp32.sh
52-
build_sketches "$ARDUINO_USR_PATH/hardware/espressif/esp32/libraries" "espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app" "$CHUNK_INDEX" "$CHUNKS_CNT"
44+
build_sketches "$GITHUB_WORKSPACE/libraries" "espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app" "$CHUNK_INDEX" "$CHUNKS_CNT"
5345
else
5446
# PlatformIO Test
55-
# cd tools && python get.py && cd ..
56-
# tools/ci/prep-platformio.sh
57-
# if [ $? -ne 0 ]; then exit 1; fi
58-
# tools/ci/test-platformio.sh
59-
# if [ $? -ne 0 ]; then exit 1; fi
6047
source ./tools/ci/install-platformio-esp32.sh
6148
python -m platformio ci --board esp32dev libraries/WiFi/examples/WiFiClient && \
6249
python -m platformio ci --board esp32dev libraries/WiFiClientSecure/examples/WiFiClientSecure && \

tools/ci/prep-arduino-ide.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

tools/ci/prep-platformio.sh

Lines changed: 0 additions & 6 deletions
This file was deleted.

tools/ci/test-arduino-ide.sh

Lines changed: 0 additions & 170 deletions
This file was deleted.

tools/ci/test-platformio.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)