diff --git a/.vsts-ci-windows-tests.yml b/.vsts-ci-windows-tests.yml index 0cb3d9183..8f6b43bf9 100644 --- a/.vsts-ci-windows-tests.yml +++ b/.vsts-ci-windows-tests.yml @@ -93,6 +93,15 @@ jobs: dotnet publish -c Release /m:1 /p:DISABLE_CLIHOST_NET6=true /p:WasmShellEmccLinkOptimization=false /p:WasmShellILLinkerEnabled=false /bl:$(build.artifactstagingdirectory)/SampleNet5-nolinker-win.binlog displayName: Build StaticLinking.Interpreter Sample (net5 without linker) + # Static linking test (net5) emsdk path with space test + - pwsh: | + cd $(build.sourcesdirectory)/src/Uno.Wasm.StaticLinking.Interpreter + mkdir "emsdk test" + $env:WASMSHELL_WSLEMSDK="$(build.sourcesdirectory)/src/Uno.Wasm.StaticLinking.Interpreter/emsdk test" + dotnet clean -c Release /p:DISABLE_CLIHOST_NET6=true + dotnet publish -c Release /m:1 /p:DISABLE_CLIHOST_NET6=true /p:WasmShellEmccLinkOptimization=false /p:WasmShellILLinkerEnabled=false /bl:$(build.artifactstagingdirectory)/SampleNet5-nolinker-win.binlog + displayName: Build StaticLinking.Interpreter Sample (emsdk path with space test) + # Static linking test with obsfucation enabled - pwsh: | cd $(build.sourcesdirectory)/src/Uno.Wasm.StaticLinking.Aot.Net6