-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR fixes tool installation for IDF < 5.2. Overlooked that wildcard tool spec. only supported for IDF 5.2 installer. Fixed by providing explicit list of tools for each version. **Improve cache-clean action** Not very intuitive so added four levels of cleaning: - pull-requests: Any items created by pull requests, excludes anything in develop branch - ccache: All ccache items - idf-tools: All IDF tools - ccache+idf: All ccache and IDF tool caches. Removed the `cache-rebuild` action since we can just do a cache clean then manually trigger a rebuild of the develop branch to accomplish a similar thing. **Update `clean-tools.py` script** Didn't clean some tools.
- Loading branch information
Showing
10 changed files
with
116 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
xtensa-esp32-elf | ||
xtensa-esp32s2-elf | ||
xtensa-esp32s3-elf | ||
riscv32-esp-elf | ||
esp32ulp-elf | ||
esp32s2ulp-elf | ||
openocd-esp32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
xtensa-esp32-elf | ||
xtensa-esp32s2-elf | ||
xtensa-esp32s3-elf | ||
riscv32-esp-elf | ||
esp32ulp-elf | ||
xtensa-esp-elf-gdb | ||
riscv32-esp-elf-gdb | ||
openocd-esp32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
xtensa-esp-elf-gdb | ||
riscv32-esp-elf-gdb | ||
xtensa-esp32-elf | ||
xtensa-esp32s2-elf | ||
xtensa-esp32s3-elf | ||
riscv32-esp-elf | ||
esp32ulp-elf | ||
esp-rom-elfs | ||
openocd-esp32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
xtensa-esp-elf-gdb | ||
riscv32-esp-elf-gdb | ||
xtensa-esp-elf | ||
riscv32-esp-elf | ||
esp32ulp-elf | ||
esp-rom-elfs | ||
openocd-esp32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters