Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wasm] Run AOT, and Wasm.Build.Tests on windows #59479

Merged
merged 34 commits into from
Nov 20, 2021
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
8eb1aad
[wasm] Add support for running AOT, and WBT tests on windows
radical Nov 7, 2021
200f303
[wasm] don't build samples in parallel on windows, to avoid cache issues
radical Nov 7, 2021
82ba001
[wasm] Add jobs for AOT, and WBT tests on windows
radical Nov 7, 2021
fd4f07f
[wasm] Disable failing tests for AOT/windows
radical Nov 7, 2021
44d6b2b
[wasm] restrict WBT to run only on relevant changes
radical Nov 7, 2021
9c2cef8
disable unrelated builds
radical Nov 7, 2021
88fa95c
[wasm] fix check for WBT jobs
radical Nov 7, 2021
dcf08e4
fix
radical Nov 8, 2021
ea57482
Update eng/pipelines/runtime-staging.yml
radical Nov 9, 2021
bfd918f
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 9, 2021
6e8abc4
run WBT/win if there are wbt changes
radical Nov 9, 2021
cfd13b8
Checking that AOT builds do run
radical Nov 9, 2021
058897f
[wasm] Run runtime/wbt also only on wbt changes
radical Nov 9, 2021
4c66b4b
Add back non-wasm builds
radical Nov 10, 2021
3e2e94c
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 10, 2021
059e661
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 10, 2021
00b74ff
Fix command line for windows/AOT tests
radical Nov 11, 2021
cf488d3
[wasm] Use WasmNativeStrip=false to help debug failures
radical Nov 11, 2021
804d8f8
unbreak linux builds
radical Nov 11, 2021
874a40b
Revert "[wasm] Use WasmNativeStrip=false to help debug failures"
radical Nov 11, 2021
5817dbb
Update src/tests/BuildWasmApps/Wasm.Build.Tests/BuildEnvironment.cs
radical Nov 12, 2021
8518a2d
address feedback - use explicit nuget project dir paths
radical Nov 12, 2021
45565ce
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 12, 2021
250cc88
[wasm] Add `PlatformDetection.IsBrowserOnWindows`, and update tests to
radical Nov 12, 2021
29848e1
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 15, 2021
6bc5df8
disable native stripping for tests
radical Nov 15, 2021
90d8622
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 16, 2021
93ce46b
wasm.build.tests: disable native stripping for all the tests
radical Nov 17, 2021
43b0917
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 17, 2021
29a0635
Fix test to track WasmNativeStrip=false
radical Nov 17, 2021
189e45c
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 18, 2021
2698fbf
add the new jobs to runtime-staging.yml too
radical Nov 18, 2021
968effb
Merge remote-tracking branch 'origin/main' into wbt-win-rc2
radical Nov 19, 2021
3453d6f
Fix wasm/windows name suffix, so the cert installation step gets run
radical Nov 19, 2021
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
12 changes: 11 additions & 1 deletion eng/pipelines/common/evaluate-default-paths.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
- src/libraries/System.Private.CoreLib/*
- src/libraries/Native/Unix/System.Globalization.Native/*
- src/libraries/Native/Unix/Common/*
- src/tests/BuildWasmApps/*
- src/native/*
exclude:
- eng/Version.Details.xml
Expand Down Expand Up @@ -99,6 +98,17 @@ jobs:
- src/coreclr/vm/*
exclude:
- '*'
- subset: wasmbuildtests
include:
- src/tasks/*
- src/tests/BuildWasmApps/*
- src/mono/wasm/build/*
- src/mono/wasm/runtime/*
- src/mono/nuget/*
- src/mono/mono/*
exclude:
- src/mono/nuget/Microsoft.NET.Runtime.Android.Sample.Mono/*
- src/mono/nuget/Microsoft.NET.Runtime.iOS.Sample.Mono/*
radical marked this conversation as resolved.
Show resolved Hide resolved

- ${{ if ne(parameters.extraSubsets, '') }}:
- ${{ parameters.extraSubsets }}
2 changes: 1 addition & 1 deletion eng/pipelines/common/global-build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
df -h
displayName: Disk Usage before Build

- ${{ if eq(parameters.nameSuffix, 'Browser_wasm_Windows') }}:
- ${{ if contains(parameters.nameSuffix, 'Windows_wasm') }}:
# Update machine certs
- task: PowerShell@2
displayName: Update machine certs
Expand Down
Loading