Merge branch 'main' into shortstack
This commit is contained in:
commit
3a55a8ebaa
13 changed files with 35 additions and 124 deletions
|
@ -34,6 +34,8 @@ variables:
|
||||||
value: NetCore-Public-XL
|
value: NetCore-Public-XL
|
||||||
- name: defaultPoolNameLinuxArm64
|
- name: defaultPoolNameLinuxArm64
|
||||||
value: Docker-Linux-Arm-Public
|
value: Docker-Linux-Arm-Public
|
||||||
|
- name: defaultPoolNameMac
|
||||||
|
value: macos-12
|
||||||
- name: defaultPoolDemandsLinux
|
- name: defaultPoolDemandsLinux
|
||||||
value: ImageOverride -equals Build.Ubuntu.1804.Amd64.Open
|
value: ImageOverride -equals Build.Ubuntu.1804.Amd64.Open
|
||||||
- name: defaultPoolDemandsWindows
|
- name: defaultPoolDemandsWindows
|
||||||
|
@ -47,10 +49,9 @@ variables:
|
||||||
value: NetCore1ESPool-Svc-Internal
|
value: NetCore1ESPool-Svc-Internal
|
||||||
- name: defaultPoolNameLinuxArm64
|
- name: defaultPoolNameLinuxArm64
|
||||||
value: Docker-Linux-Arm-Internal
|
value: Docker-Linux-Arm-Internal
|
||||||
|
- name: defaultPoolNameMac
|
||||||
|
value: macos-13-arm64
|
||||||
- name: defaultPoolDemandsLinux
|
- name: defaultPoolDemandsLinux
|
||||||
value: ImageOverride -equals Build.Ubuntu.1804.Amd64
|
value: ImageOverride -equals Build.Ubuntu.1804.Amd64
|
||||||
- name: defaultPoolDemandsWindows
|
- name: defaultPoolDemandsWindows
|
||||||
value: ImageOverride -equals windows.vs2022.amd64
|
value: ImageOverride -equals windows.vs2022.amd64
|
||||||
|
|
||||||
- name: defaultPoolNameMac
|
|
||||||
value: macos-12
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# - installer-source-build (public)
|
# - installer-source-build (public)
|
||||||
# - PR: release/* and main, ultralite build
|
# - PR: release/* and main, ultralite build
|
||||||
# - installer-unified-build (public)
|
# - installer-unified-build (public)
|
||||||
# - PR: release/* and main, lite build
|
# - PR: main, lite build
|
||||||
|
|
||||||
trigger: none
|
trigger: none
|
||||||
pr:
|
pr:
|
||||||
|
|
6
src/SourceBuild/content/.gitignore
vendored
6
src/SourceBuild/content/.gitignore
vendored
|
@ -1,11 +1,9 @@
|
||||||
/.dotnet
|
/.dotnet
|
||||||
|
/.packages
|
||||||
/artifacts
|
/artifacts
|
||||||
/eng/tools/**/bin
|
|
||||||
/eng/tools/**/obj
|
|
||||||
/prereqs/packages
|
/prereqs/packages
|
||||||
/src/linker/src/ILLink.Tasks/ILLink.Tasks.nuspec
|
|
||||||
/src/nuget-client/NuGet.config
|
/src/nuget-client/NuGet.config
|
||||||
/test/Microsoft.DotNet.SourceBuild.SmokeTests/bin
|
/test/Microsoft.DotNet.SourceBuild.SmokeTests/bin
|
||||||
/test/Microsoft.DotNet.SourceBuild.SmokeTests/obj
|
/test/Microsoft.DotNet.SourceBuild.SmokeTests/obj
|
||||||
/test/Microsoft.DotNet.SourceBuild.SmokeTests/TestResults
|
/test/Microsoft.DotNet.SourceBuild.SmokeTests/TestResults
|
||||||
*.binlog
|
*.binlog
|
||||||
|
|
|
@ -164,7 +164,7 @@
|
||||||
<KeysDir>$([MSBuild]::NormalizeDirectory('$(PrereqsDir)', 'keys'))</KeysDir>
|
<KeysDir>$([MSBuild]::NormalizeDirectory('$(PrereqsDir)', 'keys'))</KeysDir>
|
||||||
<PrereqsPackagesDir>$([MSBuild]::NormalizeDirectory('$(PrereqsDir)', 'packages'))</PrereqsPackagesDir>
|
<PrereqsPackagesDir>$([MSBuild]::NormalizeDirectory('$(PrereqsDir)', 'packages'))</PrereqsPackagesDir>
|
||||||
|
|
||||||
<!-- When SB mode, the initial arcade is unzipped to a the "ArcadeBootStrap" dir.
|
<!-- When SB mode, the initial arcade is unzipped to the "ArcadeBootstrapPackage" dir.
|
||||||
When running in VBPOC, the bootstrap package is the arcade restored at the beginning of the build. -->
|
When running in VBPOC, the bootstrap package is the arcade restored at the beginning of the build. -->
|
||||||
<ArcadeBootstrapPackageDir Condition="'$(DotNetBuildSourceOnly)' == 'true'">$([MSBuild]::NormalizeDirectory('$(NuGetPackageRoot)', 'ArcadeBootstrapPackage'))</ArcadeBootstrapPackageDir>
|
<ArcadeBootstrapPackageDir Condition="'$(DotNetBuildSourceOnly)' == 'true'">$([MSBuild]::NormalizeDirectory('$(NuGetPackageRoot)', 'ArcadeBootstrapPackage'))</ArcadeBootstrapPackageDir>
|
||||||
<ArcadeBootstrapPackageDir Condition="'$(DotNetBuildSourceOnly)' != 'true'">$(NuGetPackageRoot)</ArcadeBootstrapPackageDir>
|
<ArcadeBootstrapPackageDir Condition="'$(DotNetBuildSourceOnly)' != 'true'">$(NuGetPackageRoot)</ArcadeBootstrapPackageDir>
|
||||||
|
|
|
@ -19,6 +19,21 @@
|
||||||
StopOnFirstFailure="true" />
|
StopOnFirstFailure="true" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
<!-- Copies the output assets of the builds to the output path. -->
|
||||||
|
<Target Name="CopyBinariesToBinFolder"
|
||||||
|
AfterTargets="Build">
|
||||||
|
<ItemGroup>
|
||||||
|
<BinaryToCopy Include="$(SourceBuiltAssetsDir)*.*"
|
||||||
|
Exclude="$(SourceBuiltAssetsDir)*.nupkg;
|
||||||
|
$(SourceBuiltAssetsDir)*.requires_nupkg_signing" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Copy SourceFiles="@(BinaryToCopy)"
|
||||||
|
DestinationFolder="$(SharedOutputPath)"
|
||||||
|
SkipUnchangedFiles="true"
|
||||||
|
Condition="'@(BinaryToCopy)'!=''" />
|
||||||
|
</Target>
|
||||||
|
|
||||||
<Import Project="$(RepositoryEngineeringDir)build.sourcebuild.targets" Condition="'$(DotNetBuildSourceOnly)' == 'true'" />
|
<Import Project="$(RepositoryEngineeringDir)build.sourcebuild.targets" Condition="'$(DotNetBuildSourceOnly)' == 'true'" />
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -57,8 +57,7 @@ scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
|
||||||
|
|
||||||
# Set the NUGET_PACKAGES dir so that we don't accidentally pull some packages from the global location,
|
# Set the NUGET_PACKAGES dir so that we don't accidentally pull some packages from the global location,
|
||||||
# They should be pulled from the local feeds.
|
# They should be pulled from the local feeds.
|
||||||
packagesDir="$scriptroot/prereqs/packages/"
|
packagesRestoredDir="$scriptroot/.packages/"
|
||||||
packagesRestoredDir="${packagesDir}restored/"
|
|
||||||
export NUGET_PACKAGES=$packagesRestoredDir/
|
export NUGET_PACKAGES=$packagesRestoredDir/
|
||||||
|
|
||||||
# Common settings
|
# Common settings
|
||||||
|
@ -77,6 +76,7 @@ sourceRepository=''
|
||||||
sourceVersion=''
|
sourceVersion=''
|
||||||
CUSTOM_PACKAGES_DIR=''
|
CUSTOM_PACKAGES_DIR=''
|
||||||
CUSTOM_SDK_DIR=''
|
CUSTOM_SDK_DIR=''
|
||||||
|
packagesDir="$scriptroot/prereqs/packages/"
|
||||||
packagesArchiveDir="${packagesDir}archive/"
|
packagesArchiveDir="${packagesDir}archive/"
|
||||||
packagesPreviouslySourceBuiltDir="${packagesDir}previously-source-built/"
|
packagesPreviouslySourceBuiltDir="${packagesDir}previously-source-built/"
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ function Get-Usage() {
|
||||||
|
|
||||||
# Set the NUGET_PACKAGES dir so that we don't accidentally pull some packages from the global location,
|
# Set the NUGET_PACKAGES dir so that we don't accidentally pull some packages from the global location,
|
||||||
# They should be pulled from the local feeds.
|
# They should be pulled from the local feeds.
|
||||||
$env:NUGET_PACKAGES="$RepoRoot\prereqs\packages\restored\"
|
$env:NUGET_PACKAGES="$RepoRoot\.packages\"
|
||||||
|
|
||||||
if ($help) {
|
if ($help) {
|
||||||
Get-Usage
|
Get-Usage
|
||||||
|
|
|
@ -9,20 +9,6 @@
|
||||||
<PoisonUsageReportFile>$(PackageReportDir)poison-usage.xml</PoisonUsageReportFile>
|
<PoisonUsageReportFile>$(PackageReportDir)poison-usage.xml</PoisonUsageReportFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Copies the output assets of the builds to the output path. -->
|
|
||||||
<Target Name="CopyBinariesToBinFolder"
|
|
||||||
AfterTargets="Build">
|
|
||||||
<ItemGroup>
|
|
||||||
<BinariesToCopy Include="$(SourceBuiltAssetsDir)*.*"
|
|
||||||
Exclude="$(SourceBuiltAssetsDir)*.nupkg;$(SourceBuiltAssetsDir)*.requires_nupkg_signing" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<Copy SourceFiles="@(BinariesToCopy)"
|
|
||||||
DestinationFolder="$(SharedOutputPath)"
|
|
||||||
SkipUnchangedFiles="true"
|
|
||||||
Condition="'@(BinariesToCopy)'!=''" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<!-- After building, generate a prebuilt usage report. -->
|
<!-- After building, generate a prebuilt usage report. -->
|
||||||
<Target Name="ReportPrebuiltUsage"
|
<Target Name="ReportPrebuiltUsage"
|
||||||
AfterTargets="Build"
|
AfterTargets="Build"
|
||||||
|
|
|
@ -345,18 +345,13 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
|
||||||
Condition should be removed after source-build picks up version of Arcade that has
|
|
||||||
source-build infra changes for removal od inner-clone in VMR build. Until then some
|
|
||||||
repos will produce intermediate packages instead of repo manifest file.
|
|
||||||
|
|
||||||
https://github.com/dotnet/source-build/issues/3930
|
|
||||||
-->
|
|
||||||
<Target Name="CopyRepoArtifacts"
|
<Target Name="CopyRepoArtifacts"
|
||||||
AfterTargets="Package"
|
AfterTargets="Package"
|
||||||
Condition="Exists($(RepoManifestFile))"
|
Condition="'$(IsUtilityProject)' != 'true'"
|
||||||
Inputs="$(RepoManifestFile)"
|
Inputs="$(RepoManifestFile)"
|
||||||
Outputs="$(BaseIntermediateOutputPath)ArtifactsCopy.complete">
|
Outputs="$(BaseIntermediateOutputPath)ArtifactsCopy.complete">
|
||||||
|
<Error Text="Repo manifest file doesn't exist." Condition="!Exists('$(RepoManifestFile)')" />
|
||||||
|
|
||||||
<XmlPeek XmlInputPath="$(RepoManifestFile)"
|
<XmlPeek XmlInputPath="$(RepoManifestFile)"
|
||||||
Query="Build/Artifact/@Path">
|
Query="Build/Artifact/@Path">
|
||||||
<Output TaskParameter="Result" ItemName="RepoManifestArtifact" />
|
<Output TaskParameter="Result" ItemName="RepoManifestArtifact" />
|
||||||
|
@ -408,75 +403,6 @@
|
||||||
</Touch>
|
</Touch>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
|
||||||
This target can be removed after source-build picks up version of Arcade that has
|
|
||||||
source-build infra changes for removal od inner-clone in VMR build. Until then the target
|
|
||||||
is needed for building source-build-reference-packages and arcade repos.
|
|
||||||
|
|
||||||
https://github.com/dotnet/source-build/issues/3930
|
|
||||||
-->
|
|
||||||
<Target Name="ExtractIntermediatePackages"
|
|
||||||
AfterTargets="Package"
|
|
||||||
Inputs="$(MSBuildProjectFullPath)"
|
|
||||||
Outputs="$(BaseIntermediateOutputPath)IntermediateExtraction.complete">
|
|
||||||
<ItemGroup>
|
|
||||||
<_BuiltIntermediatePackages Condition="'$(PackagesOutput)' != ''" Include="$(PackagesOutput)/Microsoft.SourceBuild.Intermediate.*.nupkg" Exclude="$(PackagesOutput)/*.symbols.nupkg"/>
|
|
||||||
<_BuiltIntermediatePackages Condition="'@(PackagesOutputList)' != ''" Include="%(PackagesOutputList.Identity)/Microsoft.SourceBuild.Intermediate.*.nupkg" Exclude="%(PackagesOutputList.Identity)/*.symbols.nupkg"/>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<PropertyGroup Condition="'@(_BuiltIntermediatePackages)' != ''">
|
|
||||||
<_NupkgDestinationPath>$(SourceBuiltPackagesPath)</_NupkgDestinationPath>
|
|
||||||
<!-- SBRP packages unpack into the Reference packages directory instead of into blob-feed packages -->
|
|
||||||
<_NupkgDestinationPath Condition="$([System.String]::Copy(%(_BuiltIntermediatePackages.Identity)).Contains('source-build-reference-packages'))">$(ReferencePackagesDir)</_NupkgDestinationPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<Unzip SourceFiles="@(_BuiltIntermediatePackages)"
|
|
||||||
DestinationFolder="$(SourceBuiltPackagesPath)extractArtifacts/%(_BuiltIntermediatePackages.FileName)/"
|
|
||||||
SkipUnchangedFiles="true"
|
|
||||||
Condition="'@(_BuiltIntermediatePackages)' != ''" />
|
|
||||||
|
|
||||||
<ItemGroup Condition="'@(_BuiltIntermediatePackages)' != ''">
|
|
||||||
<SourceBuiltNupkgFiles Include="$(SourceBuiltPackagesPath)extractArtifacts/**/artifacts/*.nupkg" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup Condition="'@(_BuiltIntermediatePackages)' != ''">
|
|
||||||
<NonShippingPackageLists Include="$(SourceBuiltPackagesPath)extractArtifacts/**/$(NonShippingPackagesListPrefix)*" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<!-- Copy lists of NonShipping packages to prebuilt-report dir -->
|
|
||||||
<Copy SourceFiles="@(NonShippingPackageLists)" DestinationFolder="$(PackageListsDir)" />
|
|
||||||
|
|
||||||
<!-- Building SBRP: At this point the References directory contains the previously-source-built SBRPs,
|
|
||||||
clear it before moving the current SBRPs. This ensures n-1 SBRPs aren't required to build the product repos. -->
|
|
||||||
<RemoveDir
|
|
||||||
Condition="'$(_NupkgDestinationPath)' == '$(ReferencePackagesDir)'"
|
|
||||||
Directories="$(ReferencePackagesDir)" />
|
|
||||||
|
|
||||||
<Move
|
|
||||||
Condition="'@(SourceBuiltNupkgFiles)' != ''"
|
|
||||||
SourceFiles="@(SourceBuiltNupkgFiles)"
|
|
||||||
DestinationFiles="@(SourceBuiltNupkgFiles -> '$(_NupkgDestinationPath)%(Filename)%(Extension)')" />
|
|
||||||
|
|
||||||
<ItemGroup Condition="'@(_BuiltIntermediatePackages)' != ''">
|
|
||||||
<SourceBuiltAssetFiles Include="$(SourceBuiltPackagesPath)extractArtifacts/**/artifacts/*.*" />
|
|
||||||
<SourceBuiltAssetFiles Remove="$(SourceBuiltPackagesPath)extractArtifacts/**/artifacts/*.nupkg" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<Move
|
|
||||||
Condition="'@(SourceBuiltAssetFiles)' != ''"
|
|
||||||
SourceFiles="@(SourceBuiltAssetFiles)"
|
|
||||||
DestinationFiles="@(SourceBuiltAssetFiles -> '$(SourceBuiltAssetsDir)%(Filename)%(Extension)')" />
|
|
||||||
|
|
||||||
<RemoveDir
|
|
||||||
Condition="Exists('$(SourceBuiltPackagesPath)extractArtifacts/')"
|
|
||||||
Directories="$(SourceBuiltPackagesPath)extractArtifacts/" />
|
|
||||||
|
|
||||||
<MakeDir Directories="$(BaseIntermediateOutputPath)" />
|
|
||||||
<Touch Files="$(BaseIntermediateOutputPath)IntermediateExtraction.complete" AlwaysCreate="true">
|
|
||||||
<Output TaskParameter="TouchedFiles" ItemName="FileWrites" />
|
|
||||||
</Touch>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<!-- Copy restored packages from inner build to ensure they're included in the
|
<!-- Copy restored packages from inner build to ensure they're included in the
|
||||||
main build prebuilt check -->
|
main build prebuilt check -->
|
||||||
<Target Name="CopyInnerBuildRestoredPackages"
|
<Target Name="CopyInnerBuildRestoredPackages"
|
||||||
|
|
|
@ -28,10 +28,7 @@
|
||||||
</BundledToolLayoutProject>
|
</BundledToolLayoutProject>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<MSBuild
|
<MSBuild Projects="@(BundledToolLayoutProject)" />
|
||||||
BuildInParallel="False"
|
|
||||||
Projects="@(BundledToolLayoutProject)">
|
|
||||||
</MSBuild>
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -26,10 +26,7 @@
|
||||||
</CrossGenDownloadPackageProject>
|
</CrossGenDownloadPackageProject>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<MSBuild
|
<MSBuild Projects="@(CrossGenDownloadPackageProject)" />
|
||||||
BuildInParallel="False"
|
|
||||||
Projects="@(CrossGenDownloadPackageProject)">
|
|
||||||
</MSBuild>
|
|
||||||
|
|
||||||
<!-- This PropertyGroup contains the paths to the various SDK tooling that should be
|
<!-- This PropertyGroup contains the paths to the various SDK tooling that should be
|
||||||
cross-genned. This tooling multi-targets, and we only want to cross-gen the .NET Core
|
cross-genned. This tooling multi-targets, and we only want to cross-gen the .NET Core
|
||||||
|
|
|
@ -409,10 +409,7 @@
|
||||||
</BundledLayoutPackageDownloadProject>
|
</BundledLayoutPackageDownloadProject>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<MSBuild
|
<MSBuild Projects="@(BundledLayoutPackageDownloadProject)" />
|
||||||
BuildInParallel="False"
|
|
||||||
Projects="@(BundledLayoutPackageDownloadProject)">
|
|
||||||
</MSBuild>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<!-- Use lowercase package name in package path -->
|
<!-- Use lowercase package name in package path -->
|
||||||
|
@ -534,10 +531,7 @@
|
||||||
</AppHostTemplateDownloadPackageProject>
|
</AppHostTemplateDownloadPackageProject>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<MSBuild
|
<MSBuild Projects="@(AppHostTemplateDownloadPackageProject)" />
|
||||||
BuildInParallel="False"
|
|
||||||
Projects="@(AppHostTemplateDownloadPackageProject)">
|
|
||||||
</MSBuild>
|
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AppHostExecutableName>AppHost$(ExeExtension)</AppHostExecutableName>
|
<AppHostExecutableName>AppHost$(ExeExtension)</AppHostExecutableName>
|
||||||
|
|
|
@ -82,8 +82,7 @@
|
||||||
|
|
||||||
<MSBuild Projects="$(MSBuildProjectFullPath)"
|
<MSBuild Projects="$(MSBuildProjectFullPath)"
|
||||||
Targets="InstallRuntimeToLayout"
|
Targets="InstallRuntimeToLayout"
|
||||||
Properties="RuntimeVersionToInstall=%(RuntimeVersionToInstall.Identity)"
|
Properties="RuntimeVersionToInstall=%(RuntimeVersionToInstall.Identity)" />
|
||||||
BuildInParallel="false"/>
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="InstallRuntimeToLayout">
|
<Target Name="InstallRuntimeToLayout">
|
||||||
|
@ -155,9 +154,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<MSBuild Projects="@(TestProjectToRun)"
|
<MSBuild Projects="@(TestProjectToRun)"
|
||||||
Targets="RunTestsAsTool"
|
Targets="RunTestsAsTool" />
|
||||||
BuildInParallel="true"
|
|
||||||
/>
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="RunTestsAsTool">
|
<Target Name="RunTestsAsTool">
|
||||||
|
|
Loading…
Add table
Reference in a new issue