8000 CI updates (#8) · Compy/ESPAsyncWebServer@4524dca · GitHub
[go: up one dir, main page]

Skip to content

Commit 4524dca

Browse files
authored
CI updates (esphome#8)
1 parent c22f062 commit 4524dca

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/scripts/install-arduino-ide.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ if [ ! -d "$ARDUINO_IDE_PATH" ]; then
5252
echo "Installing Arduino IDE on $OS_NAME ..."
5353
echo "Downloading 'arduino-nightly-$OS_NAME.$ARCHIVE_FORMAT' to 'arduino.$ARCHIVE_FORMAT' ..."
5454
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
5656
echo "Extracting 'arduino.$ARCHIVE_FORMAT' ..."
5757
tar xf "arduino.$ARCHIVE_FORMAT" > /dev/null
5858
mv arduino-nightly "$ARDUINO_IDE_PATH"
5959
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
6161
echo "Extracting 'arduino.$ARCHIVE_FORMAT' ..."
6262
unzip "arduino.$ARCHIVE_FORMAT" > /dev/null
6363
if [ "$OS_IS_MACOS" == "1" ]; then

.github/workflows/push.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,24 @@ jobs:
1313
name: Arduino for ${{ matrix.board }} on ${{ matrix.os }}
1414
runs-on: ${{ matrix.os }}
1515
strategy:
16+
fail-fast: false
1617
matrix:
1718
os: [ubuntu-latest, windows-latest, macOS-latest]
1819
board: [esp32, esp8266]
1920
steps:
20-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v3.0.2
2122
- name: Build Tests
2223
run: bash ./.github/scripts/on-push.sh ${{ matrix.board }} 0 1
2324

2425
build-pio:
2526
name: PlatformIO for ${{ matrix.board }} on ${{ matrix.os }}
2627
runs-on: ${{ matrix.os }}
2728
strategy:
29+
fail-fast: false
2830
matrix:
2931
os: [ubuntu-latest, windows-latest, macOS-latest]
3032
board: [esp32, esp8266]
3133
steps:
32-
- uses: actions/checkout@v1
34+
- uses: actions/checkout@v3.0.2
3335
- name: Build Tests
3436
run: bash ./.github/scripts/on-push.sh ${{ matrix.board }} 1 1

0 commit comments

Comments
 (0)
0