File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,12 @@ if [ ! -d "$ARDUINO_IDE_PATH" ]; then
52
52
echo " Installing Arduino IDE on $OS_NAME ..."
53
53
echo " Downloading 'arduino-nightly-$OS_NAME .$ARCHIVE_FORMAT ' to 'arduino.$ARCHIVE_FORMAT ' ..."
54
54
if [ " $OS_IS_LINUX " == " 1" ]; then
55
- wget -O " arduino.$ARCHIVE_FORMAT " " https://www .arduino.cc/download.php?f= /arduino-nightly-$OS_NAME .$ARCHIVE_FORMAT " > /dev/null 2>&1
55
+ wget -O " arduino.$ARCHIVE_FORMAT " " https://downloads .arduino.cc/arduino-nightly-$OS_NAME .$ARCHIVE_FORMAT " > /dev/null 2>&1
56
56
echo " Extracting 'arduino.$ARCHIVE_FORMAT ' ..."
57
57
tar xf " arduino.$ARCHIVE_FORMAT " > /dev/null
58
58
mv arduino-nightly " $ARDUINO_IDE_PATH "
59
59
else
60
- curl -o " arduino.$ARCHIVE_FORMAT " -L " https://www .arduino.cc/download.php?f= /arduino-nightly-$OS_NAME .$ARCHIVE_FORMAT " > /dev/null 2>&1
60
+ curl -o " arduino.$ARCHIVE_FORMAT " -L " https://downloads .arduino.cc/arduino-nightly-$OS_NAME .$ARCHIVE_FORMAT " > /dev/null 2>&1
61
61
echo " Extracting 'arduino.$ARCHIVE_FORMAT ' ..."
62
62
unzip " arduino.$ARCHIVE_FORMAT " > /dev/null
63
63
if [ " $OS_IS_MACOS " == " 1" ]; then
Original file line number Diff line number Diff line change @@ -13,22 +13,24 @@ jobs:
13
13
name : Arduino for ${{ matrix.board }} on ${{ matrix.os }}
14
14
runs-on : ${{ matrix.os }}
15
15
strategy :
16
+ fail-fast : false
16
17
matrix :
17
18
os : [ubuntu-latest, windows-latest, macOS-latest]
18
19
board : [esp32, esp8266]
19
20
steps :
20
- - uses : actions/checkout@v1
21
+ - uses : actions/checkout@v3.0.2
21
22
- name : Build Tests
22
23
run : bash ./.github/scripts/on-push.sh ${{ matrix.board }} 0 1
23
24
24
25
build-pio :
25
26
name : PlatformIO for ${{ matrix.board }} on ${{ matrix.os }}
26
27
runs-on : ${{ matrix.os }}
27
28
strategy :
29
+ fail-fast : false
28
30
matrix :
29
31
os : [ubuntu-latest, windows-latest, macOS-latest]
30
32
board : [esp32, esp8266]
31
33
steps :
32
- - uses : actions/checkout@v1
34
+ - uses : actions/checkout@v3.0.2
33
35
- name : Build Tests
34
36
run : bash ./.github/scripts/on-push.sh ${{ matrix.board }} 1 1
You can’t perform that action at this time.
0 commit comments