From cafad451755be408913262df459a515cacbcceb9 Mon Sep 17 00:00:00 2001 From: Syrus Date: Wed, 20 Nov 2019 19:13:59 -0800 Subject: [PATCH] Added make wapm command --- Makefile | 3 +++ azure-pipelines.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a19cc70a1e7..81b7f828af9 100644 --- a/Makefile +++ b/Makefile @@ -266,3 +266,6 @@ dep-graph: docs: cargo doc --features=backend-singlepass,backend-llvm,wasi,managed + +wapm: + cargo build --release --manifest-path wapm-cli/Cargo.toml --features "telemetry update-notifications" diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 23f806dca1e..720115f1828 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -123,7 +123,7 @@ jobs: displayName: Build (Windows) condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - bash: | - cargo build --release --manifest-path wapm-cli/Cargo.toml --features "telemetry update-notifications" + make wapm displayName: Build WAPM condition: | eq(variables['Build.SourceBranch'], 'refs/heads/master')