-
-
Notifications
You must be signed in to change notification settings - Fork 94
Breaking changes plan for v2 #16
Comments
Couldn't a |
@jhpratt yeah, it is pretty much possible, but this feature does not look that important, so it is easier to postpone it till the breaking release. Until then, simple - uses: actions-rs/toolchain@v1
with: // skipped for clarity
- run: rustup target add my-new-target |
|
another +1 for multiple targets here |
Having a |
I'd also like to second the need for multiple targets. This is a situation that arises regularly for people wanting to use Rust as part of R packages on Windows, because R by default builds 32-bit and 64-bit binaries at the same time. (You can't separate it out into two builds, it always cross-compiles.) How about adding a keyword |
Oh, and I forgot to say: Adding an entire step just to add a target, and only on Windows, is annoying and clutters the build script and output. So I'd very much prefer not having to do that, even if it solves the problem in principle. |
I just want to say that I hugely support this! |
There is no ETA for
v2
yet, as there are not much important changes were made or planned to be, but at least we can track the things which can be improved or changed:override: true
input by defaultprofile: minimal
input by defaulttarget
input withtargets
, which will allow passing multiple targets to installSupport fornot a breaking change, yay!rust-toolchain
file (Recognize the override filerust-toolchain
#21) (not sure yet if breaking change)In case you have an idea, feel free to add it in here as an issue comment.
The text was updated successfully, but these errors were encountered: