Skip to content

Commit 9f46972

Browse files
petermetzaldousalvarez
authored andcommitted
test(test-tooling): fix flaky rustc-container-target-nodejs.test
The problem was that the Rust compiler version we were using (v1.52.x) seem to have gotten outdated and it would no longer work with wasm-pack. To provide a fix I upgraded the base image of the container to come with Rust v1.57.x and now the build error[1] is no longer present and the test case is passing with the new image that was pushed to ghcr.io. The image tag this was pushed as is: ghcr.io/hyperledger/cactus-rust-compiler:2022-01-12-15d4793c---fix-1646 which is now also the default tag that the RustcContainer class uses in the test-tooling package. [1]: ```sh Compiling bumpalo v3.9.1 �[38;5;9merror[E0658]: arbitrary expressions in key-value attributes are unstable �[38;5;12m--> /usr/local/cargo/registry/src/github.lhy31512.workers.dev-1ecc6299db9ec823/bumpalo-3.9.1/src/lib.rs:1:10 �[38;5;12m| �[38;5;12m1 �[38;5;12m| #![doc = include_str!("../README.md")] �[38;5;12m| �[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^^^^^^ �[38;5;12m| �[38;5;12m= note: see issue #78835 <rust-lang/rust#78835> for more information Compiling wasm-bindgen v0.2.78 �[38;5;9merror: aborting due to previous error For more information about this error, try `rustc --explain E0658`. error: could not compile `bumpalo` ``` Fixes hyperledger-cacti#1646 Signed-off-by: Peter Somogyvari <[email protected]> Signed-off-by: aldousalvarez <[email protected]>
1 parent 15d4793 commit 9f46972

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/cactus-test-tooling/src/main/typescript/rustc-container/rustc-container.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export class RustcContainer {
8989
this.hostSourceDir = Optional.ofNullable(opts.hostSourceDir);
9090
this.imageName =
9191
opts.imageName || "ghcr.io/hyperledger/cactus-rust-compiler";
92-
this.imageTag = opts.imageTag || "1.0.3";
92+
this.imageTag = opts.imageTag || "2022-01-12-15d4793c---fix-1646";
9393
this.imageFqn = `${this.imageName}:${this.imageTag}`;
9494
this.envVars = opts.envVars || new Map();
9595
this.emitContainerLogs = Bools.isBooleanStrict(opts.emitContainerLogs)

tools/docker/rust-compiler/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.52.1-slim-bullseye
1+
FROM rust:1.57.0-slim-bullseye
22

33
RUN apt update
44

0 commit comments

Comments
 (0)