From 5163e212edf98cb108b9aff75af5041a4346d45e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 4 Sep 2022 20:49:19 +0300 Subject: [PATCH] ci: Install rustfmt in the nightly toolchain for generator.py --- ci/images_template.yml | 2 +- ci/install-rust.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/images_template.yml b/ci/images_template.yml index e40aecd39..c266f3b55 100644 --- a/ci/images_template.yml +++ b/ci/images_template.yml @@ -1,4 +1,4 @@ variables: - GST_RS_IMG_TAG: '2022-09-04.0' + GST_RS_IMG_TAG: '2022-09-04.1' GST_RS_STABLE: '1.63.0' GST_RS_MSRV: '1.63.0' diff --git a/ci/install-rust.sh b/ci/install-rust.sh index 684631238..2d21aec5d 100755 --- a/ci/install-rust.sh +++ b/ci/install-rust.sh @@ -33,6 +33,8 @@ if [ "$RUST_IMAGE_FULL" = "1" ]; then fi if [ "$RUST_VERSION" = "nightly" ]; then + rustup component add rustfmt --toolchain nightly + # Documentation tools cargo install --force rustdoc-stripper fi