From ceab80b2346af3c53728ec7b5482518574165061 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 30 Jun 2025 10:49:39 +0200 Subject: [PATCH 1/2] docs: Udpate readme --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ca44a0a..1660359 100644 --- a/README.md +++ b/README.md @@ -47,15 +47,16 @@ jobs: This action can be configured in various ways using its inputs: -| Name | Description | Type | Default | -| :-------------: | :--------------------------------------------------------: | :----: | :------: | -| `default` | Set installed toolchain as a default toolchain | bool | `false` | -| `buildtargets` | Comma separated list of targets | string | _all_ | -| `version` | Which version of the toolchain to install | string | _latest_ | -| `ldproxy` | Whether to install `ldproxy` (required for `std`) | bool | `true` | -| `override` | Overrides the installed toolchain | bool | `true` | -| `export` | Sources `${ESPUP_EXPORT_FILE}` | bool | `true` | -| `extended-llvm` | Install the whole LLVM instead of only installing the libs | bool | `false` | +| Name | Description | Type | Default | +| :-------------: | :--------------------------------------------------------: | :----: | :---------------------: | +| `default` | Set installed toolchain as a default toolchain | bool | `false` | +| `buildtargets` | Comma separated list of targets | string | _esp32,esp32s2,esp32s3_ | +| `version` | Which version of the toolchain to install | string | _latest_ | +| `ldproxy` | Whether to install `ldproxy` (required for `std`) | bool | `true` | +| `override` | Overrides the installed toolchain | bool | `true` | +| `export` | Sources `${ESPUP_EXPORT_FILE}` | bool | `true` | +| `extended-llvm` | Install the whole LLVM instead of only installing the libs | bool | `false` | +| `name` | Xtensa Rust toolchain name | string | _esp_ | All inputs are optional; if no inputs are provided: From 87873ef7f55252444abb9c95d38bba358446384f Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 30 Jun 2025 11:20:33 +0200 Subject: [PATCH 2/2] feat: Update default ldproxy value to false --- README.md | 2 +- action.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1660359..c818045 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ This action can be configured in various ways using its inputs: | `default` | Set installed toolchain as a default toolchain | bool | `false` | | `buildtargets` | Comma separated list of targets | string | _esp32,esp32s2,esp32s3_ | | `version` | Which version of the toolchain to install | string | _latest_ | -| `ldproxy` | Whether to install `ldproxy` (required for `std`) | bool | `true` | +| `ldproxy` | Whether to install `ldproxy` (required for `std`) | bool | `false` | | `override` | Overrides the installed toolchain | bool | `true` | | `export` | Sources `${ESPUP_EXPORT_FILE}` | bool | `true` | | `extended-llvm` | Install the whole LLVM instead of only installing the libs | bool | `false` | diff --git a/action.yaml b/action.yaml index db09119..5553785 100644 --- a/action.yaml +++ b/action.yaml @@ -18,7 +18,7 @@ inputs: default: latest ldproxy: description: Whether to install ldproxy (required for `std`) - default: true + default: false override: description: Whether to override the toolchain default: true