From 1491f3153159c2d6c62f1f419539bd3df388f175 Mon Sep 17 00:00:00 2001 From: Till Schneidereit Date: Thu, 8 Aug 2019 13:29:34 +0200 Subject: [PATCH] Don't publish the Windows installer's wixpdb file (#263) This file is only useful for debugging the installer itself, which our users really shouldn't need to do. --- .azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index f45f7db113..418dcde67e 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -204,6 +204,7 @@ jobs: export WT_VERSION=`cat Cargo.toml | sed -n 's/^version = "\([^"]*\)".*/\1/p'` "$WIX/bin/candle" -arch x64 -out target/wasmtime.wixobj installer/msi/wasmtime.wxs "$WIX/bin/light" -out $BUILD_ARTIFACTSTAGINGDIRECTORY/$(basename).msi target/wasmtime.wixobj -ext WixUtilExtension + rm $BUILD_ARTIFACTSTAGINGDIRECTORY/$(basename).wixpdb displayName: Create installer (Windows) condition: eq(variables['Agent.OS'], 'Windows_NT')