-
Notifications
You must be signed in to change notification settings - Fork 64
Add initial checkin of infrastructure and one reference package source #1
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a210598
Add initial checkin of infrastructure and one reference package source
dseefeld 16571b6
Remove unneeded files in textOnlyPackages
dseefeld 6dcf441
Change tabs to spaces
dseefeld d7a0a35
Fixup and comment warnings
dseefeld 3e6a25f
Move common properties to dir.props
dseefeld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="Local artifacts/bin dir" value="./artifacts/packages/" /> | ||
<add key="roslyn-tools" value="https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
__scriptpath=$(cd "$(dirname "$0")"; pwd -P) | ||
__log_path="$__scriptpath/artifacts/log" | ||
|
||
# Use Arcade script to initialize dotnet cli only | ||
source ./eng/common/tools.sh | ||
InitializeDotNetCli true | ||
|
||
export __DOTNET_CMD="$_InitializeDotNetCli/dotnet" | ||
__SDK_PATH="$DOTNET_INSTALL_DIR/sdk/$_ReadGlobalVersion" | ||
|
||
export RepoRoot="$__scriptpath/" | ||
|
||
$__DOTNET_CMD $__SDK_PATH/MSBuild.dll $__scriptpath/src/referencePackages/buildReferencePackages.proj /bl:"$__log_path/BuildReferencePackages.binlog" $@ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
rm -rf ./.dotnet | ||
rm -rf ./artifacts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@echo off | ||
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0Build.ps1""" -restore -build -test -sign -pack -publish -ci %*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!-- | ||
This MSBuild file is intended to be used as the body of the default | ||
publishing release pipeline. The release pipeline will use this file | ||
to invoke the PushToStaticFeed task that will read the build asset | ||
manifest and publish the assets described in the manifest to | ||
informed target feeds. | ||
--> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)DefaultVersions.props" Condition="Exists('$(MSBuildThisFileDirectory)DefaultVersions.props')" /> | ||
|
||
<!-- | ||
This won't be necessary once we solve this issue: | ||
https://github.com/dotnet/arcade/issues/2266 | ||
--> | ||
<Import Project="$(MSBuildThisFileDirectory)ArtifactsCategory.props" Condition="Exists('$(MSBuildThisFileDirectory)ArtifactsCategory.props')" /> | ||
|
||
<Import Project="$(NuGetPackageRoot)microsoft.dotnet.build.tasks.feed\$(MicrosoftDotNetBuildTasksFeedVersion)\build\Microsoft.DotNet.Build.Tasks.Feed.targets" /> | ||
|
||
<Target Name="PublishToFeed"> | ||
<Error Condition="'$(ArtifactsCategory)' == ''" Text="ArtifactsCategory: The artifacts' category produced by the build wasn't provided." /> | ||
<Error Condition="'$(AccountKeyToStaticFeed)' == ''" Text="AccountKeyToStaticFeed: Account key for target feed wasn't provided." /> | ||
<Error Condition="'$(ManifestsBasePath)' == ''" Text="Full path to asset manifests directory wasn't provided." /> | ||
<Error Condition="'$(BlobBasePath)' == '' AND '$(PackageBasePath)' == ''" Text="A valid full path to BlobBasePath of PackageBasePath is required." /> | ||
|
||
<ItemGroup> | ||
<!-- Include all manifests found in the manifest folder. --> | ||
<ManifestFiles Include="$(ManifestsBasePath)*.xml" /> | ||
</ItemGroup> | ||
|
||
<Error Condition="'@(ManifestFiles)' == ''" Text="No manifest file was found in the provided path: $(ManifestsBasePath)" /> | ||
|
||
<!-- | ||
For now the type of packages being published will be informed for the whole build. | ||
Eventually this will be specified on a per package basis: | ||
TODO: https://github.com/dotnet/arcade/issues/2266 | ||
--> | ||
<PropertyGroup> | ||
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == '.NETCORE'">https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json</TargetStaticFeed> | ||
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == '.NETCOREVALIDATION'">https://dotnetfeed.blob.core.windows.net/arcade-validation/index.json</TargetStaticFeed> | ||
</PropertyGroup> | ||
|
||
<Error | ||
Condition="'$(TargetStaticFeed)' == ''" | ||
Text="'$(ArtifactsCategory)' wasn't recognized as a valid artifact category. Valid categories are: '.NetCore' and '.NetCoreValidation'" /> | ||
|
||
<!-- Iterate publishing assets from each manifest file. --> | ||
<PushArtifactsInManifestToFeed | ||
ExpectedFeedUrl="$(TargetStaticFeed)" | ||
AccountKey="$(AccountKeyToStaticFeed)" | ||
BARBuildId="$(BARBuildId)" | ||
MaestroApiEndpoint="$(MaestroApiEndpoint)" | ||
BuildAssetRegistryToken="$(BuildAssetRegistryToken)" | ||
Overwrite="$(OverrideAssetsWithSameName)" | ||
PassIfExistingItemIdentical="$(PassIfExistingItemIdentical)" | ||
MaxClients="$(MaxParallelUploads)" | ||
UploadTimeoutInMinutes="$(MaxUploadTimeoutInMinutes)" | ||
AssetManifestPath="%(ManifestFiles.Identity)" | ||
BlobAssetsBasePath="$(BlobBasePath)" | ||
PackageAssetsBasePath="$(PackageBasePath)" /> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Feed" Version="$(MicrosoftDotNetBuildTasksFeedVersion)" /> | ||
</ItemGroup> | ||
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Don't touch this folder | ||
|
||
uuuuuuuuuuuuuuuuuuuu | ||
u" uuuuuuuuuuuuuuuuuu "u | ||
u" u$$$$$$$$$$$$$$$$$$$$u "u | ||
u" u$$$$$$$$$$$$$$$$$$$$$$$$u "u | ||
u" u$$$$$$$$$$$$$$$$$$$$$$$$$$$$u "u | ||
u" u$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$u "u | ||
u" u$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$u "u | ||
$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $ | ||
$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $ | ||
$ $$$" ... "$... ...$" ... "$$$ ... "$$$ $ | ||
$ $$$u `"$$$$$$$ $$$ $$$$$ $$ $$$ $$$ $ | ||
$ $$$$$$uu "$$$$ $$$ $$$$$ $$ """ u$$$ $ | ||
$ $$$""$$$ $$$$ $$$u "$$$" u$$ $$$$$$$$ $ | ||
$ $$$$....,$$$$$..$$$$$....,$$$$..$$$$$$$$ $ | ||
$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $ | ||
"u "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" u" | ||
"u "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" u" | ||
"u "$$$$$$$$$$$$$$$$$$$$$$$$$$$$" u" | ||
"u "$$$$$$$$$$$$$$$$$$$$$$$$" u" | ||
"u "$$$$$$$$$$$$$$$$$$$$" u" | ||
"u """""""""""""""""" u" | ||
"""""""""""""""""""" | ||
|
||
!!! Changes made in this directory are subject to being overwritten by automation !!! | ||
|
||
The files in this directory are shared by all Arcade repos and managed by automation. If you need to make changes to these files, open an issue or submit a pull request to https://github.com/dotnet/arcade first. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
[CmdletBinding(PositionalBinding=$false)] | ||
Param( | ||
[string][Alias('c')]$configuration = "Debug", | ||
[string] $projects, | ||
[string][Alias('v')]$verbosity = "minimal", | ||
[string] $msbuildEngine = $null, | ||
[bool] $warnAsError = $true, | ||
[bool] $nodeReuse = $true, | ||
[switch][Alias('r')]$restore, | ||
[switch] $deployDeps, | ||
[switch][Alias('b')]$build, | ||
[switch] $rebuild, | ||
[switch] $deploy, | ||
[switch][Alias('t')]$test, | ||
[switch] $integrationTest, | ||
[switch] $performanceTest, | ||
[switch] $sign, | ||
[switch] $pack, | ||
[switch] $publish, | ||
[switch][Alias('bl')]$binaryLog, | ||
[switch] $ci, | ||
[switch] $prepareMachine, | ||
[switch] $help, | ||
[Parameter(ValueFromRemainingArguments=$true)][String[]]$properties | ||
) | ||
|
||
. $PSScriptRoot\tools.ps1 | ||
|
||
function Print-Usage() { | ||
Write-Host "Common settings:" | ||
Write-Host " -configuration <value> Build configuration: 'Debug' or 'Release' (short: -c)" | ||
Write-Host " -verbosity <value> Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] (short: -v)" | ||
Write-Host " -binaryLog Output binary log (short: -bl)" | ||
Write-Host " -help Print help and exit" | ||
Write-Host "" | ||
|
||
Write-Host "Actions:" | ||
Write-Host " -restore Restore dependencies (short: -r)" | ||
Write-Host " -build Build solution (short: -b)" | ||
Write-Host " -rebuild Rebuild solution" | ||
Write-Host " -deploy Deploy built VSIXes" | ||
Write-Host " -deployDeps Deploy dependencies (e.g. VSIXes for integration tests)" | ||
Write-Host " -test Run all unit tests in the solution (short: -t)" | ||
Write-Host " -integrationTest Run all integration tests in the solution" | ||
Write-Host " -performanceTest Run all performance tests in the solution" | ||
Write-Host " -pack Package build outputs into NuGet packages and Willow components" | ||
Write-Host " -sign Sign build outputs" | ||
Write-Host " -publish Publish artifacts (e.g. symbols)" | ||
Write-Host "" | ||
|
||
Write-Host "Advanced settings:" | ||
Write-Host " -projects <value> Semi-colon delimited list of sln/proj's to build. Globbing is supported (*.sln)" | ||
Write-Host " -ci Set when running on CI server" | ||
Write-Host " -prepareMachine Prepare machine for CI run, clean up processes after build" | ||
Write-Host " -warnAsError <value> Sets warnaserror msbuild parameter ('true' or 'false')" | ||
Write-Host " -msbuildEngine <value> Msbuild engine to use to run build ('dotnet', 'vs', or unspecified)." | ||
Write-Host "" | ||
|
||
Write-Host "Command line arguments not listed above are passed thru to msbuild." | ||
Write-Host "The above arguments can be shortened as much as to be unambiguous (e.g. -co for configuration, -t for test, etc.)." | ||
} | ||
|
||
function InitializeCustomToolset { | ||
if (-not $restore) { | ||
return | ||
} | ||
|
||
$script = Join-Path $EngRoot "restore-toolset.ps1" | ||
|
||
if (Test-Path $script) { | ||
. $script | ||
} | ||
} | ||
|
||
function Build { | ||
$toolsetBuildProj = InitializeToolset | ||
InitializeCustomToolset | ||
|
||
$bl = if ($binaryLog) { "/bl:" + (Join-Path $LogDir "Build.binlog") } else { "" } | ||
|
||
if ($projects) { | ||
# Re-assign properties to a new variable because PowerShell doesn't let us append properties directly for unclear reasons. | ||
# Explicitly set the type as string[] because otherwise PowerShell would make this char[] if $properties is empty. | ||
[string[]] $msbuildArgs = $properties | ||
$msbuildArgs += "/p:Projects=$projects" | ||
$properties = $msbuildArgs | ||
} | ||
|
||
MSBuild $toolsetBuildProj ` | ||
$bl ` | ||
/p:Configuration=$configuration ` | ||
/p:RepoRoot=$RepoRoot ` | ||
/p:Restore=$restore ` | ||
/p:DeployDeps=$deployDeps ` | ||
/p:Build=$build ` | ||
/p:Rebuild=$rebuild ` | ||
/p:Deploy=$deploy ` | ||
/p:Test=$test ` | ||
/p:Pack=$pack ` | ||
/p:IntegrationTest=$integrationTest ` | ||
/p:PerformanceTest=$performanceTest ` | ||
/p:Sign=$sign ` | ||
/p:Publish=$publish ` | ||
@properties | ||
} | ||
|
||
try { | ||
if ($help -or (($null -ne $properties) -and ($properties.Contains("/help") -or $properties.Contains("/?")))) { | ||
Print-Usage | ||
exit 0 | ||
} | ||
|
||
if ($ci) { | ||
$binaryLog = $true | ||
$nodeReuse = $false | ||
} | ||
|
||
# Import custom tools configuration, if present in the repo. | ||
# Note: Import in global scope so that the script set top-level variables without qualification. | ||
$configureToolsetScript = Join-Path $EngRoot "configure-toolset.ps1" | ||
if (Test-Path $configureToolsetScript) { | ||
. $configureToolsetScript | ||
} | ||
|
||
Build | ||
} | ||
catch { | ||
Write-Host $_ | ||
Write-Host $_.Exception | ||
Write-Host $_.ScriptStackTrace | ||
ExitWithExitCode 1 | ||
} | ||
|
||
ExitWithExitCode 0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.