Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `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` |
| `name` | Xtensa Rust toolchain name | string | _esp_ |

All inputs are optional; if no inputs are provided:

Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down