Skip to content
Closed

testing CI #112661

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions eng/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ while [[ -h "$source" ]]; do
done
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"

statscmd="$scriptroot/stats.sh"

$statscmd &

usage()
{
echo "Common settings:"
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/common/templates/pipeline-with-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ extends:

browser_wasm:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-webassembly-amd64
options: "--name sample -v /usr/bin/docker:/tmp/docker:ro"
env:
ROOTFS_DIR: /crossrootfs/x64

Expand Down
1,731 changes: 1 addition & 1,730 deletions eng/pipelines/runtime.yml

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions eng/stats.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

/tmp/docker exec -t -u root sample tdnf install -y sudo

sudo tdnf install -y procps-ng

while true; do
echo "--------vm stats-----"
echo " for $(date)"
echo "--------disk---------"
df -h
echo "--------memory-------"
free -h
echo "--------processes----"
ps -aux
echo "--------done---------"
sleep 5
done
1 change: 0 additions & 1 deletion eng/testing/tests.browser.targets
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@

<WriteLinesToFile File="$(WasmMainHtmlPath)" Lines="&lt;html&gt;&lt;body&gt;&lt;script type='module' src='$(WasmMainJSFileName)'&gt;&lt;/script&gt;&lt;/body&gt;&lt;/html&gt;" Overwrite="True" Condition="!Exists('$(WasmMainHtmlPath)')"/>

<ForceMSBuildGC />
</Target>

<Target Name="_PrepareForAOTOnHelix">
Expand Down
1 change: 0 additions & 1 deletion eng/testing/tests.wasi.targets
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@
Condition="'%(WasmFilesToIncludeFromPublishDir.Identity)' != ''" />
</ItemGroup>

<ForceMSBuildGC />
</Target>

<Target Name="_PrepareForAOTOnHelix">
Expand Down
2 changes: 0 additions & 2 deletions eng/testing/tests.wasm.targets
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,6 @@
TaskName="Microsoft.WebAssembly.Build.Tasks.GenerateAOTProps"
AssemblyFile="$(WasmBuildTasksAssemblyPath)" TaskFactory="TaskHostFactory" />

<UsingTask TaskName="Microsoft.WebAssembly.Build.Tasks.ForceMSBuildGC" AssemblyFile="$(WasmAppBuilderTasksAssemblyPath)" />

<Target Name="_BundleAOTTestWasmAppForHelix" DependsOnTargets="$(_BundleAOTTestWasmAppForHelixDependsOn)">
<PropertyGroup>
<_MainAssemblyPath Condition="'%(WasmAssembliesToBundle.FileName)' == $(AssemblyName) and '%(WasmAssembliesToBundle.Extension)' == '.dll'">%(WasmAssembliesToBundle.Identity)</_MainAssemblyPath>
Expand Down
19 changes: 0 additions & 19 deletions src/tasks/WasmAppBuilder/ForceMSBuildGC.cs

This file was deleted.

Loading