File tree 3 files changed +23
-26
lines changed
src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest
3 files changed +23
-26
lines changed Original file line number Diff line number Diff line change @@ -926,25 +926,25 @@ extends:
926
926
927
927
# WASI/WASM
928
928
929
- - template : /eng/pipelines/common/templates/wasm-library-tests.yml
930
- parameters :
931
- platforms :
932
- - wasi_wasm
933
- - wasi_wasm_win
934
- nameSuffix : ' _Smoke'
935
- extraBuildArgs : /p:EnableAggressiveTrimming=true /p:RunWasmSamples=true /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
936
- shouldRunSmokeOnly : true
937
- alwaysRun : ${{ variables.isRollingBuild }}
938
- scenarios :
939
- - WasmTestOnWasmtime
940
-
941
- - template : /eng/pipelines/common/templates/simple-wasm-build-tests.yml
942
- parameters :
943
- platforms :
944
- - wasi_wasm
945
- - wasi_wasm_win
946
- extraBuildArgs : /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
947
- alwaysRun : ${{ variables.isRollingBuild }}
929
+ # - template: /eng/pipelines/common/templates/wasm-library-tests.yml
930
+ # parameters:
931
+ # platforms:
932
+ # - wasi_wasm
933
+ # - wasi_wasm_win
934
+ # nameSuffix: '_Smoke'
935
+ # extraBuildArgs: /p:EnableAggressiveTrimming=true /p:RunWasmSamples=true /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
936
+ # shouldRunSmokeOnly: true
937
+ # alwaysRun: ${{ variables.isRollingBuild }}
938
+ # scenarios:
939
+ # - WasmTestOnWasmtime
940
+
941
+ # - template: /eng/pipelines/common/templates/simple-wasm-build-tests.yml
942
+ # parameters:
943
+ # platforms:
944
+ # - wasi_wasm
945
+ # - wasi_wasm_win
946
+ # extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
947
+ # alwaysRun: ${{ variables.isRollingBuild }}
948
948
949
949
#
950
950
# Android devices
Original file line number Diff line number Diff line change 1
- Wasi.Build.Tests.InvariantTests
2
- Wasi.Build.Tests.ILStripTests
3
- Wasi.Build.Tests.SdkMissingTests
4
- Wasi.Build.Tests.RuntimeConfigTests
5
- Wasi.Build.Tests.WasiTemplateTests
6
- Wasi.Build.Tests.PInvokeTableGeneratorTests
7
- Wasi.Build.Tests.WasiLibraryModeTests
Original file line number Diff line number Diff line change 9
9
<PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
10
10
<UsingWasiRuntimeWorkload Condition="'$(UsingWasiRuntimeWorkload)' == ''">$(WasiNativeWorkloadAvailable)</UsingWasiRuntimeWorkload>
11
11
</PropertyGroup>
12
+
13
+ <Target Name="FailBuild" BeforeTargets="ProcessFrameworkReferences;Restore;Build;Publish" Condition="'$(RuntimeIdentifier)' == 'wasi-wasm'">
14
+ <Error Text="The 'wasi-experimental' workload is not supported in .NET 9." />
15
+ </Target>
12
16
</Project>
You can’t perform that action at this time.
0 commit comments