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.
This commit is contained in:
Till Schneidereit
2019-08-08 13:29:34 +02:00
committed by GitHub
parent 085d700cdc
commit 1491f31531

View File

@@ -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')