Skip to content

Commit

Permalink
[CI] Fix bootloader and partition links (#1366)
Browse files Browse the repository at this point in the history
Currently not available in the master so point to the last version
  • Loading branch information
1technophile authored Dec 15, 2022
1 parent 7426597 commit d73696e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/gen_wu.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
manif_path = 'docs/.vuepress/public/firmware_build/'
vue_path = 'docs/.vuepress/components/'
cors_proxy = '' #'https://cors.bridged.cc/'
esp32_blurl = 'https://github.com/espressif/arduino-esp32/raw/master/tools/sdk/esp32/bin/bootloader_dio_80m.bin'
esp32_boot = 'https://github.com/espressif/arduino-esp32/raw/master/tools/partitions/boot_app0.bin'
esp32_blurl = 'https://github.com/espressif/arduino-esp32/raw/2.0.5/tools/sdk/esp32/bin/bootloader_dio_80m.bin'
esp32_boot = 'https://github.com/espressif/arduino-esp32/raw/2.0.5/tools/partitions/boot_app0.bin'
release = requests.get('https://api.github.com/repos/' + repo + '/releases/latest')
rel_data = json.loads(release.text)

Expand Down
4 changes: 2 additions & 2 deletions scripts/gen_wu_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
vue_path = 'docs/.vuepress/components/'
bin_path = 'toDeploy/'
cors_proxy = '' #'https://cors.bridged.cc/'
esp32_blurl = 'https://github.com/espressif/arduino-esp32/raw/master/tools/sdk/esp32/bin/bootloader_dio_80m.bin'
esp32_boot = 'https://github.com/espressif/arduino-esp32/raw/master/tools/partitions/boot_app0.bin'
esp32_blurl = 'https://github.com/espressif/arduino-esp32/raw/2.0.5/tools/sdk/esp32/bin/bootloader_dio_80m.bin'
esp32_boot = 'https://github.com/espressif/arduino-esp32/raw/2.0.5/tools/partitions/boot_app0.bin'

if not os.path.exists(manif_path):
os.makedirs(manif_path)
Expand Down

0 comments on commit d73696e

Please sign in to comment.