dotnet-maestro[bot]
4de9f12e2e
Update dependencies from https://github.com/dotnet/arcade build 20211209.4 ( #12837 )
...
[release/6.0.1xx] Update dependencies from dotnet/arcade
2021-12-14 19:55:22 +00:00
dotnet-maestro[bot]
5e966fbff4
Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20211213.1 ( #12812 )
...
[release/6.0.1xx] Update dependencies from dotnet/source-build-reference-packages
2021-12-13 18:40:48 +00:00
Dan Seefeldt
65bbb444f8
Remove un-needed version properties ( #12683 )
2021-12-09 13:37:17 -06:00
Daniel Plaisted
dca53077da
Merge pull request #12773 from MichaelSimons/issue-12673
...
Refactor build status section to expose public builds
2021-12-08 10:56:03 -08:00
dotnet-maestro[bot]
d7fe077c1b
Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20211208.1 ( #12771 )
...
[release/6.0.1xx] Update dependencies from dotnet/source-build-reference-packages
2021-12-08 17:31:24 +00:00
Michael Simons
83418957c1
Refactor build status section to expose public builds
2021-12-08 11:27:56 -06:00
dotnet-maestro[bot]
974ce5fc15
Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20211207.8 ( #12770 )
...
[release/6.0.1xx] Update dependencies from dotnet/source-build-reference-packages
2021-12-07 23:07:23 +00:00
dotnet-maestro[bot]
d3d3005612
Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20211207.3 ( #12768 )
...
[release/6.0.1xx] Update dependencies from dotnet/source-build-reference-packages
2021-12-07 21:39:04 +00:00
vseanreesermsft
a58ef7bebe
Update branding to 6.0.102 ( #12761 )
2021-12-07 10:31:37 -08:00
Michael Simons
7d5dca7f85
Update release/6.0.1xx build machines ( #12748 )
...
* Switch another leg to Ubuntu 18
* Switch to Ubuntu 18
* Also update source build queues to Ubuntu 18
Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com>
2021-12-06 22:37:28 +00:00
Daniel Plaisted
33c0854bda
Merge pull request #12736 from dotnet/remove-ulimit
...
Remove-ulimit
2021-11-30 10:44:32 -08:00
Daniel Plaisted
f8e115fadf
Don't set ulimit
...
1ES pools should now have ulimit set already now
2021-11-29 20:19:30 -08:00
Dan Seefeldt
6d87160a67
Remove 2.1 templates from dynamic templates ( #12511 )
2021-11-18 19:57:14 +00:00
Daniel Plaisted
8760771077
Merge pull request #12698 from manodasanW/patch-3
...
Update Windows SDK projection
2021-11-17 20:45:13 -08:00
Michael Simons
5466891cbb
Update dotnet toolset used in source-build ( #12701 )
2021-11-17 22:12:40 -06:00
Manodasan Wignarajah
4c3838b1d5
Update Windows SDK projection
2021-11-17 14:08:28 -08:00
Michael Simons
836def0423
Add bootstrap build to CI ( #12651 )
2021-11-17 16:07:20 -06:00
Chris Rummel
b412c61801
Re-enable F# tests that should work now. ( #12686 )
...
* Re-enable F# tests that should work now.
* Also re-enable some web tests that should work now.
2021-11-17 01:48:47 +00:00
Daniel Plaisted
d608d977da
Merge pull request #12657 from dotnet/marcpopMSFT-WDarm64targeting50
...
Looks like our logic for the RID for WindowsDesktop was merged incorrectly into 6.0
2021-11-15 18:48:57 -08:00
Dan Seefeldt
7f02ccd30f
Fix previously-source-built bootstrap ( #12642 )
...
* Fix previously-source-built bootstrap
* Update based on review comments
* Update to write lines more efficiently
2021-11-15 23:44:44 +00:00
Marc Paine
e6654f96e5
Revert "Update the WD publish tests to target downlevel as well"
...
This reverts commit 8f2fda8f78
.
2021-11-15 12:44:03 -08:00
Michael Simons
8a165144e2
Refactor tarball CI build to support both official and public builds ( #12668 )
2021-11-15 18:11:00 +00:00
Alex Perovich
86fe76957f
Port #12374 to release/6.0.1xx ( #12636 )
...
Add downloading of runtime assets from dotnetbuilds
2021-11-15 08:37:04 -08:00
Marc Paine
8f2fda8f78
Update the WD publish tests to target downlevel as well
2021-11-12 16:37:43 -08:00
Michael Simons
c0c7a2d301
Support tarball builds in public CI ( #12658 )
2021-11-12 23:59:52 +00:00
Marc Paine
fb42fb7282
Update GenerateBundledVersions.targets
2021-11-12 13:47:22 -08:00
Davis Goodin
76d625236e
Allow SDK to produce reference assemblies ( #12549 )
2021-11-12 19:47:56 +00:00
Omair Majid
457210a04c
Also publish non-portable RID runtime symbols tarball ( #12622 )
...
This fixes a regression in .NET 6 source-build compared to the .NET
5 source-build.
source-build wants to publish runtime symbols tarball for portable (eg,
linux-x64) and non-portable (eg, fedora.33-x64) RIDs here after a build.
Following .NET 5 conventions, I expected to see:
./artifacts/x64/Release/runtime/dotnet-runtime-symbols-fedora.34-x64-6.0.0.tar.gz
./artifacts/x64/Release/runtime/dotnet-runtime-symbols-linux-x64-6.0.0.tar.gz
Unfortunately, only the portable RID (linux-x64) tarball is present
after a full source-build in .NET 6.
It turns out this is a bug in our build scripts. We try and copy
binaries - including the symbol tarballs - after building each of
runtime-portable and runtime. However, the target dependency is wrong:
after `Build`, the intermediate package doesn't exist from the
just-built repo.
What ends up happening is that nothing is copied after building
runtime-portable. However, after building runtime, the runtime-portable
intermediate artifacts are found and copied over. So the end
build has portable RID symbos, but not the non-portable ones.
Fix that by changing the dependency of this target so it runs after
intermediate packages are available.
2021-11-12 19:35:39 +00:00
Davis Goodin
772d572a31
dotnet/runtime: Disable package validation in source-build for reliability ( #12526 )
2021-11-12 09:36:27 -06:00
Michael Simons
9056116cb3
Increase source-build tarball build timeout ( #12652 )
2021-11-12 09:31:38 -06:00
Daniel Plaisted
a329cf4049
Merge pull request #12600 from dsplaisted/workload-manifest-msis
...
Bundle workload manifests as separate MSIs
2021-11-11 13:10:09 -08:00
Marc Paine
56b2f07db1
Merge pull request #12550 from dotnet/marcpopMSFT-6.0branding
...
Update to 6.0 in our wxl files as that was reverted a while back.
2021-11-11 12:50:22 -08:00
Davis Goodin
0527f05018
dotnet/runtime: Enable source-link in source-build for '.version' file ( #12527 )
2021-11-11 13:16:59 -06:00
dotnet-maestro[bot]
9afbd7fef8
Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20211111.1 ( #12638 )
...
Microsoft.SourceBuild.Intermediate.source-build-reference-packages
From Version 6.0.0-alpha.1.21521.1 -> To Version 6.0.0-alpha.1.21561.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2021-11-11 17:46:25 +00:00
Michael Simons
84217d6e27
Specify depth when updating submodules ( #12588 )
2021-11-11 08:22:24 -06:00
Michael Simons
28afaeb89a
Flow environment variable into run-build ( #12637 )
2021-11-11 00:14:49 +00:00
dotnet-maestro[bot]
c0af1d694a
Update dependencies from https://github.com/dotnet/arcade build 20211110.2 ( #12633 )
...
[release/6.0.1xx] Update dependencies from dotnet/arcade
2021-11-10 23:05:56 +00:00
dotnet-maestro[bot]
3a49af8062
Update dependencies from https://github.com/dotnet/arcade build 20211108.5 ( #12630 )
...
[release/6.0.1xx] Update dependencies from dotnet/arcade
2021-11-10 19:49:57 +00:00
William Godbe
5a3e064b88
[release/6.0.1xx] update Asp.Net templates ( #12597 )
2021-11-10 18:48:36 +00:00
Michael Simons
e856a47d99
Revert "Enable public tarball CI" ( #12629 )
...
This reverts commit ec426f0634687e3ebb1aba197bd795c1bf65277e.
2021-11-10 10:11:02 -06:00
Marc Paine
86cb0ed124
Update the release notes link.
2021-11-05 11:11:00 -07:00
Daniel Plaisted
2f331cfbc4
Verify that workload manifest MSIs are signed
2021-11-03 23:14:42 -07:00
Daniel Plaisted
2e335b89d3
Merge pull request #12576 from dsplaisted/update-ulimit
...
Update ulimit
2021-11-03 14:36:34 -07:00
Daniel Plaisted
c9aba1c482
Merge branch 'release/6.0.1xx' into update-ulimit
2021-11-03 14:36:04 -07:00
Marc Paine
f78643f9cd
Merge pull request #12590 from dotnet/marcpopMSFT-60100servicing
...
Update branding for servicing and 101
2021-11-03 14:34:50 -07:00
Daniel Plaisted
0b2b3f44d5
Add comments about sudo and ulimit
2021-11-03 14:34:41 -07:00
Daniel Plaisted
590cbca7ea
Include workload manifests wixobj file
2021-11-03 10:35:42 -07:00
Daniel Plaisted
500bc39ef4
Run build under sudo so that we can set ulimit
2021-11-03 10:21:12 -07:00
Daniel Plaisted
dc4a666b21
Set ulimit
2021-11-03 10:21:04 -07:00
Daniel Plaisted
3217a5c4a3
Remove ALLOWMSIINSTALL property for workload manifest MSIs
2021-11-03 09:41:43 -07:00