From ebdccd24195aaaa8950c1f91f8b148c8a0b42781 Mon Sep 17 00:00:00 2001 From: joao-paulo-parity Date: Thu, 19 May 2022 12:48:38 -0300 Subject: [PATCH] install diener from paritytech repository related to https://github.com/bkchr/diener/issues/15 --- dockerfiles/ci-linux/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfiles/ci-linux/Dockerfile b/dockerfiles/ci-linux/Dockerfile index 915d8145..bf4a0ff6 100644 --- a/dockerfiles/ci-linux/Dockerfile +++ b/dockerfiles/ci-linux/Dockerfile @@ -29,7 +29,8 @@ RUN set -eux && \ rustup target add wasm32-unknown-unknown --toolchain nightly && \ # install cargo tools cargo install cargo-web wasm-pack cargo-deny cargo-spellcheck && \ - cargo install --version 0.4.2 diener && \ + # diener can be installed from crates.io when https://github.com/bkchr/diener/issues/15 is fixed + cargo install --git https://github.com/paritytech/diener --branch all-packages && \ # wasm-bindgen-cli version should match the one pinned in substrate # https://github.com/paritytech/substrate/blob/master/bin/node/browser-testing/Cargo.toml#L15 cargo install --version 0.2.73 wasm-bindgen-cli && \