summaryrefslogtreecommitdiff
path: root/eng
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2018-11-07 14:35:49 +0000
committerGitHub <noreply@github.com>2018-11-07 14:35:49 +0000
commit18fe41da05f9f9e3ca1aea0e617d94397aca3c99 (patch)
tree41921c4e9db68d9f888d3ee5b9bb0f5643c6476a /eng
parentb107aaaa591c645978f17c20f547ccd902d4cf71 (diff)
downloadcoreclr-18fe41da05f9f9e3ca1aea0e617d94397aca3c99.tar.gz
coreclr-18fe41da05f9f9e3ca1aea0e617d94397aca3c99.tar.bz2
coreclr-18fe41da05f9f9e3ca1aea0e617d94397aca3c99.zip
[Darc-Update] Update dependencies from build 20181106.6 of https://github.com/dotnet/arcade (#20832)
* Updating version files * Updating version files
Diffstat (limited to 'eng')
-rw-r--r--eng/Version.Details.xml8
-rw-r--r--eng/common/templates/phases/base.yml19
2 files changed, 22 insertions, 5 deletions
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index c6bb8869f4..a35b25dc2b 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -2,13 +2,13 @@
<Dependencies>
<ProductDependencies></ProductDependencies>
<ToolsetDependencies>
- <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.18552.21">
+ <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.18556.6">
<Uri>https://github.com/dotnet/arcade</Uri>
- <Sha>9552de1b6531c0974bd6e004184c547cf3f73702</Sha>
+ <Sha>7b0a1f028490bbf18ab1565998719315f2de22e7</Sha>
</Dependency>
- <Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="1.0.0-beta.18552.21">
+ <Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="1.0.0-beta.18556.6">
<Uri>https://github.com/dotnet/arcade</Uri>
- <Sha>9552de1b6531c0974bd6e004184c547cf3f73702</Sha>
+ <Sha>7b0a1f028490bbf18ab1565998719315f2de22e7</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies> \ No newline at end of file
diff --git a/eng/common/templates/phases/base.yml b/eng/common/templates/phases/base.yml
index 35294aea0a..0123cf43b1 100644
--- a/eng/common/templates/phases/base.yml
+++ b/eng/common/templates/phases/base.yml
@@ -7,6 +7,14 @@ parameters:
# Optional: name of the phase (not specifying phase name may cause name collisions)
name: ''
+ # Optional: display name of the phase
+ displayName: ''
+
+ # Optional: condition for the job to run
+ condition: ''
+
+ # Optional: dependencies of the phase
+ dependsOn: ''
# Required: A defined YAML queue
queue: {}
@@ -42,10 +50,19 @@ parameters:
phases:
- phase: ${{ parameters.name }}
+ ${{ if ne(parameters.displayName, '') }}:
+ displayName: ${{ parameters.displayName }}
+
+ ${{ if ne(parameters.condition, '') }}:
+ condition: ${{ parameters.condition }}
+
+ ${{ if ne(parameters.dependsOn, '') }}:
+ dependsOn: ${{ parameters.dependsOn }}
+
queue: ${{ parameters.queue }}
${{ if ne(parameters.variables, '') }}:
- variables:
+ variables:
${{ insert }}: ${{ parameters.variables }}
steps: