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

[release/8.0-staging][wasm] WBT Stop taking latest sdk in release/8.0 #94097

Merged
Merged
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: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
<MicrosoftExtensionsLoggingVersion>3.1.7</MicrosoftExtensionsLoggingVersion>
<MicrosoftSymbolStoreVersion>1.0.406601</MicrosoftSymbolStoreVersion>
<!-- installer version, for testing workloads -->
<MicrosoftDotnetSdkInternalVersion>8.0.100-rtm.23478.7</MicrosoftDotnetSdkInternalVersion>
<!-- <SdkVersionForWorkloadTesting>$(MicrosoftDotnetSdkInternalVersion)</SdkVersionForWorkloadTesting> -->
<MicrosoftDotnetSdkInternalVersion>8.0.100-rtm.23527.6</MicrosoftDotnetSdkInternalVersion>
<SdkVersionForWorkloadTesting>$(MicrosoftDotnetSdkInternalVersion)</SdkVersionForWorkloadTesting>
</PropertyGroup>
</Project>
5 changes: 5 additions & 0 deletions src/mono/wasi/Wasi.Build.Tests/data/nuget8.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<!-- TEST_RESTORE_SOURCES_INSERTION_LINE -->
<add key="dotnet8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />

<!-- work around illink needing a stable version for now -->
<!-- Begin: Package sources from dotnet-runtime -->
<add key="darc-pub-dotnet-runtime-488a8a3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-runtime-488a8a35/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-runtime -->
</packageSources>
<disabledPackageSources>
<clear />
Expand Down
3 changes: 3 additions & 0 deletions src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@ public NonWasmTemplateBuildTests(ITestOutputHelper output, SharedBuildPerTestCla
)
.MultiplyWithSingleArgs
(
// Disable net6 and net7 tests for now, as the latest versions aren't in the feeds yet
/*
"net6.0",
s_previousTargetFramework,
*/
s_latestTargetFramework
)
.UnwrapItemsAsArrays().ToList();
Expand Down
5 changes: 5 additions & 0 deletions src/mono/wasm/Wasm.Build.Tests/data/nuget8.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<!-- TEST_RESTORE_SOURCES_INSERTION_LINE -->
<add key="dotnet8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />

<!-- work around illink needing a stable version for now -->
<!-- Begin: Package sources from dotnet-runtime -->
<add key="darc-pub-dotnet-runtime-488a8a3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-runtime-488a8a35/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-runtime -->
</packageSources>
<disabledPackageSources>
<clear />
Expand Down
Loading