.NET utilizes itself to build. Therefore, in order to build .NET from source, you first need to acquire or build a bootstrapping .NET SDK and other tooling such as Arcade. Re-bootstrapping is the term used to describe when the bootstrapped toolset need to be updated. This document describes the steps to re-bootstrap the VMR.
As part of the release process, the toolset is updated (e.g. PRs are created via the release automation). Outside of a release, re-bootstrapping is only permitted during preview releases. It is not allowed during RC, GA, or servicing releases. The reason it is not allowed during non-preview releases is because of the negative impact it has on Linux distro maintainers who source build .NET. It is often a long and time consuming process for them to re-bootstrap. It is likely to cause significant delays in the release/availability of .NET within the distros that are source built.
Re-bootstrapping is necessary when .NET takes a dependency on new functionality added within the bootstrap toolset. For example suppose a new compiler feature is added. In order for a repo to take a dependency on the new feature, a re-bootstrap would be necessary. The implication of this, and the restrictions of when re-bootstrapping is allowed, means that repos should, in general, wait to take a dependency on a new toolset feature until after that feature has been released.
Important
The re-bootstrap pipeline uploads the artifacts to the official blob storage, so do not use this pipeline for testing of any kind. To test stage 2 failures, please refer to this documentation.
You can re-bootstrap the VMR using this pipeline. The pipeline will upload the artifacts & open the corresponding re-bootstrap PR.
In case the automated re-bootstrapping pipeline is unavailable, you can manually re-bootstrap the VMR:
- Update previous source-build artifacts
- Find a
dotnet-source-build
run with the desired changes.
- If a rebootstrap is needed quickly and it is not feasibly to wait for a dotnet-source-build run, you can also use the artifacts from a dotnet-source-build-lite run.
- Retrieve the built SDKs and private source-built artifacts archives, from
the following legs:
- Alpine<nnn>_Online_MsftSdk_x64
- CentOSStream<n>_Online_MsftSdk_x64
- Upload the SDKs to the source build sdk blob storage
- Upload the private source-built artifacts archives to the source build assets blob storage
- Find a
dotnet-source-build
run with the desired changes.
- Update .NET SDK
- Find the
dotnet-sdk-official-ci
build that best matches the dotnet-source-build. The following is the
suggested order of precedence for finding the best match.
- A build from the same commit.
- From the dotnet-source-build, look at the build's installer tag.
- From a VMR commit, you can find the corresponding installer commit by looking at the source-manifest.json.
- The next passing build after the same commit.
- In the odd case where the are no passing builds after the commit, you can try using an earlier passing build.
- A build from the same commit.
- Retrieve the built SDK version from the build.
- Update the dotnet version in the global.json.
- Find the
dotnet-sdk-official-ci
build that best matches the dotnet-source-build. The following is the
suggested order of precedence for finding the best match.
- Update arcade
- Lookup the arcade commit and version. From a VMR commit, you can find the corresponding arcade commit/version by looking at the source-manifest.json.
- Update the arcade SDK version in the global.json.
- Update the arcade dependency commit and version in the Version.Details.xml.
- Update private source-built SDK and artifacts versions
- Update
PrivateSourceBuiltSdkVersion
andPrivateSourceBuiltArtifactsVersion
in the Versions.props.
- Update