diff options
author | dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> | 2019-03-28 08:17:39 -0700 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2019-03-28 08:17:39 -0700 |
commit | 64eb93c253abf250acab4ee0559c25832eb0aa19 (patch) | |
tree | 99a98eba003829ece1e18e28b0ef4e0fecbd14f0 /eng/common | |
parent | 074bbe2eaf519a5c1bd8a05abe86f98978b58098 (diff) | |
download | coreclr-64eb93c253abf250acab4ee0559c25832eb0aa19.tar.gz coreclr-64eb93c253abf250acab4ee0559c25832eb0aa19.tar.bz2 coreclr-64eb93c253abf250acab4ee0559c25832eb0aa19.zip |
[master] Update dependencies from dotnet/arcade (#23406)
* Update dependencies from https://github.com/dotnet/arcade build 20190327.11
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19177.11
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19177.11
Diffstat (limited to 'eng/common')
-rw-r--r-- | eng/common/darc-init.ps1 | 2 | ||||
-rwxr-xr-x | eng/common/darc-init.sh | 2 | ||||
-rw-r--r-- | eng/common/generate-graph-files.ps1 | 2 | ||||
-rw-r--r-- | eng/common/templates/steps/send-to-helix.yml | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/eng/common/darc-init.ps1 b/eng/common/darc-init.ps1 index 2467ebdd42..29c443212b 100644 --- a/eng/common/darc-init.ps1 +++ b/eng/common/darc-init.ps1 @@ -19,7 +19,7 @@ function InstallDarcCli ($darcVersion) { # Until we can anonymously query the BAR API for the latest arcade-services # build applied to the PROD channel, this is hardcoded. if (-not $darcVersion) { - $darcVersion = '1.1.0-beta.19151.3' + $darcVersion = '1.1.0-beta.19175.6' } $arcadeServicesSource = 'https://dotnetfeed.blob.core.windows.net/dotnet-arcade/index.json' diff --git a/eng/common/darc-init.sh b/eng/common/darc-init.sh index 8d63dd711b..cab6cd5bf9 100755 --- a/eng/common/darc-init.sh +++ b/eng/common/darc-init.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash source="${BASH_SOURCE[0]}" -darcVersion="1.1.0-beta.19151.3" +darcVersion="1.1.0-beta.19175.6" while [[ $# > 0 ]]; do opt="$(echo "$1" | awk '{print tolower($0)}')" diff --git a/eng/common/generate-graph-files.ps1 b/eng/common/generate-graph-files.ps1 index 76f57076a3..a05b84f798 100644 --- a/eng/common/generate-graph-files.ps1 +++ b/eng/common/generate-graph-files.ps1 @@ -3,7 +3,7 @@ Param( [Parameter(Mandatory=$true)][string] $gitHubPat, # GitHub personal access token from https://github.com/settings/tokens (no auth scopes needed) [Parameter(Mandatory=$true)][string] $azdoPat, # Azure Dev Ops tokens from https://dev.azure.com/dnceng/_details/security/tokens (code read scope needed) [Parameter(Mandatory=$true)][string] $outputFolder, # Where the graphviz.txt file will be created - [string] $darcVersion = '1.1.0-beta.19169.5', # darc's version + [string] $darcVersion = '1.1.0-beta.19175.6', # darc's version [string] $graphvizVersion = '2.38', # GraphViz version [switch] $includeToolset # Whether the graph should include toolset dependencies or not. i.e. arcade, optimization. For more about # toolset dependencies see https://github.com/dotnet/arcade/blob/master/Documentation/Darc.md#toolset-vs-product-dependencies diff --git a/eng/common/templates/steps/send-to-helix.yml b/eng/common/templates/steps/send-to-helix.yml index 0187597681..7c185e9414 100644 --- a/eng/common/templates/steps/send-to-helix.yml +++ b/eng/common/templates/steps/send-to-helix.yml @@ -1,3 +1,4 @@ +# Please remember to update the documentation if you make changes to these parameters! parameters: HelixSource: 'pr/default' # required -- sources must start with pr/, official/, prodcon/, or agent/ HelixType: 'tests/default/' # required -- Helix telemetry which identifies what type of data this is; should include "test" for clarity and must end in '/' @@ -84,4 +85,4 @@ steps: Creator: ${{ parameters.Creator }} SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(${{ parameters.condition }}, ne(variables['Agent.Os'], 'Windows_NT')) - continueOnError: ${{ parameters.continueOnError }}
\ No newline at end of file + continueOnError: ${{ parameters.continueOnError }} |