Skip to content

Commit 21b3995

Browse files
authored
Update canary build tool (#3701)
## Motivation and Context <!--- Why is this change required? What problem does it solve? --> <!--- If it fixes an open issue, please link to the issue here --> Our WASI canary was breaking with the newest Rust version due to the new WASI build targets: https://blog.rust-lang.org/2024/04/09/updates-to-rusts-wasi-targets.html ## Description <!--- Describe your changes in detail --> Updating the version of `cargo-component` used to build our WASI canary. Made the same update in the `aws-sdk-rust` repo: awslabs/aws-sdk-rust#1168 ## Testing <!--- Please describe in detail how you tested your changes --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> This same change was made in the canary workflow in the `aws-sdk-rust` repo and run successfully there: * PR: awslabs/aws-sdk-rust#1168 * Canary run: https://github.com/awslabs/aws-sdk-rust/actions/runs/9575014647 ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [ ] I have updated `CHANGELOG.next.toml` if I made changes to the smithy-rs codegen or runtime crates - [ ] I have updated `CHANGELOG.next.toml` if I made changes to the AWS SDK, generated SDK code, or SDK runtime crates ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent 6fff79a commit 21b3995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ci-build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ ARG rust_nightly_version
126126
RUN cargo install wasmtime-cli --features="component-model" --locked --version ${cargo_wasmtime_version}
127127

128128
FROM install_rust AS cargo_component
129-
ARG cargo_component_version=0.10.1
129+
ARG cargo_component_version=0.13.2
130130
ARG rust_nightly_version
131131
RUN cargo +${rust_nightly_version} install cargo-component --locked --version ${cargo_component_version}
132132

0 commit comments

Comments
 (0)