From 10cbc789a87c63d36bf8c2820f7ab12fc319e274 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 16 Apr 2019 10:53:50 -0700 Subject: [PATCH] Install rustfmt on azure pipelines --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 487a84b3..fa1980c6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -257,6 +257,9 @@ jobs: displayName: "Doc - build the API documentation" steps: - template: ci/azure-install-rust.yml + # Install rustfmt so we can format the web-sys bindings + - script: rustup component add rustfmt + displayName: "Install rustfmt" - template: ci/azure-install-sccache.yml - script: cargo doc --no-deps --features 'nightly serde-serialize' displayName: "Document wasm-bindgen"