From caccedb722b8df903fa61038e29188d5418be91f Mon Sep 17 00:00:00 2001 From: Ashley Williams Date: Thu, 23 Jan 2020 13:51:46 -0600 Subject: [PATCH] feat(test): test CLI on windows --- azure-pipelines.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5031f538..c5436a59 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -106,6 +106,30 @@ jobs: - script: cargo test -p wasm-bindgen-wasm-interpreter displayName: "wasm-bindgen-wasm-interpreter tests" + - job: test_cli_windows + displayName: "Run wasm-bindgen-cli crate tests (Windows)" + pool: + vmImage: vs2017-win2016 + steps: + - template: ci/azure-install-rust.yml + # Temporarily disable sccache because it is failing on CI. + # - template: ci/azure-install-sccache.yml + - script: rustup target add wasm32-unknown-unknown + displayName: "install wasm target" + - task: NodeTool@0 + inputs: + versionSpec: '>=13.0' + - script: cargo test -p wasm-bindgen-cli-support + displayName: "wasm-bindgen-cli-support tests" + - script: cargo test -p wasm-bindgen-cli + displayName: "wasm-bindgen-cli tests" + - script: cargo test -p wasm-bindgen-anyref-xform + displayName: "wasm-bindgen-anyref-xform tests" + - script: cargo test -p wasm-bindgen-multi-value-xform + displayName: "wasm-bindgen-multi-value-xform tests" + - script: cargo test -p wasm-bindgen-wasm-interpreter + displayName: "wasm-bindgen-wasm-interpreter tests" + - job: test_web_sys displayName: "Run web-sys crate tests" steps: