Skip to content

Commit e364e66

Browse files
committed
go back to arduino-cli 0.35.3 since 1.0.0 is buggy
see: arduino/arduino-cli#2643
1 parent d5f0d3c commit e364e66

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
echo -en "matrix=" >> $GITHUB_OUTPUT
3838
echo -en "[" >> $GITHUB_OUTPUT
3939
40-
get_sketches_json_matrix arduino $GITHUB_WORKSPACE/examples/esp8266_pico esp8266 1.0.0 esp8266:esp8266:generic:xtal=80,vt=flash,exception=disabled,stacksmash=disabled,ssl=all,mmu=3232,non32xfer=fast,ResetMethod=nodemcu,CrystalFreq=26,FlashFreq=80,FlashMode=qio,eesz=4M2M,led=2,sdk=nonosdk_190703,ip=lm2f,dbg=Serial1,lvl=SSL,wipe=none,baud=115200 >> $GITHUB_OUTPUT
40+
get_sketches_json_matrix arduino $GITHUB_WORKSPACE/examples/esp8266_pico esp8266 0.35.3 esp8266:esp8266:generic:xtal=80,vt=flash,exception=disabled,stacksmash=disabled,ssl=all,mmu=3232,non32xfer=fast,ResetMethod=nodemcu,CrystalFreq=26,FlashFreq=80,FlashMode=qio,eesz=4M2M,led=2,sdk=nonosdk_190703,ip=lm2f,dbg=Serial1,lvl=SSL,wipe=none,baud=115200 >> $GITHUB_OUTPUT
4141
echo -en "," >> $GITHUB_OUTPUT
4242
43-
get_sketches_json_matrix arduino $GITHUB_WORKSPACE/examples/esp8266_pico esp8266 1.0.0 esp8266:esp8266:generic:xtal=80,vt=flash,exception=disabled,stacksmash=disabled,ssl=all,mmu=3232,non32xfer=fast,ResetMethod=nodemcu,CrystalFreq=26,FlashFreq=80,FlashMode=qio,eesz=4M2M,led=2,sdk=nonosdk_190703,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=115200 >> $GITHUB_OUTPUT
43+
get_sketches_json_matrix arduino $GITHUB_WORKSPACE/examples/esp8266_pico esp8266 0.35.3 esp8266:esp8266:generic:xtal=80,vt=flash,exception=disabled,stacksmash=disabled,ssl=all,mmu=3232,non32xfer=fast,ResetMethod=nodemcu,CrystalFreq=26,FlashFreq=80,FlashMode=qio,eesz=4M2M,led=2,sdk=nonosdk_190703,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=115200 >> $GITHUB_OUTPUT
4444
echo -en "," >> $GITHUB_OUTPUT
4545
46-
get_sketches_json_matrix arduino $GITHUB_WORKSPACE/examples/esp32 esp32 1.0.0 esp32:esp32:esp32:FlashFreq=80 >> $GITHUB_OUTPUT
46+
get_sketches_json_matrix arduino $GITHUB_WORKSPACE/examples/esp32 esp32 0.35.3 esp32:esp32:esp32:FlashFreq=80 >> $GITHUB_OUTPUT
4747
4848
echo -en "]" >> $GITHUB_OUTPUT
4949
echo >> $GITHUB_OUTPUT
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
CLI_VERSION: [1.0.0]
58+
CLI_VERSION: [0.35.3]
5959
env:
6060
CLI_VERSION: ${{ matrix.CLI_VERSION }}
6161
ARDUINO_DIRECTORIES_DATA: /home/runner/arduino_ide

travis/common.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,11 @@ function get_sketches_json_matrix()
105105
}
106106

107107
function get_core_cli() {
108-
export ARDUINO_BOARD_MANAGER_ADDITIONAL_URLS="https://arduino.esp8266.com/stable/package_esp8266com_index.json https://espressif.github.io/arduino-esp32/package_esp32_index.json"
108+
export ARDUINO_BOARD_MANAGER_ADDITIONAL_URLS="https://arduino.esp8266.com/stable/package_esp8266com_index.json https://espressif.github.io/arduino-esp32/package_esp32_index.json https://github.com/earlephilhower/arduino-pico/releases/download/3.9.2/package_rp2040_index.json"
109109
arduino-cli core update-index
110110
arduino-cli core install esp8266:esp8266
111111
arduino-cli core install esp32:esp32
112+
arduino-cli core install rp2040:rp2040
112113
}
113114

114115
function get_core()

0 commit comments

Comments
 (0)