From 3ffb87c88fb1b40481843abe07b758f32a2a853e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 14 Dec 2018 13:08:56 +0000 Subject: [PATCH] Update dependencies from https://github.com/dotnet/arcade build 779 (#169) This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.18613.20 --- eng/Version.Details.xml | 4 ++-- eng/common/templates/job/job.yml | 15 +++++++++++++++ global.json | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d8dda5d81..4ec56bdec 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -2,9 +2,9 @@ - + https://github.com/dotnet/arcade - ffc7a871add67b229c7fd41ad1cdff41da926312 + 76eb87c3f3de6954a2523490688e3a93e1763256 diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 9fb858e48..5e293db35 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -95,11 +95,26 @@ jobs: variables: - ${{ each variable in parameters.variables }}: + # handle name-value variable syntax + # example: + # - name: [key] + # value: [value] - ${{ if ne(variable.name, '') }}: - name: ${{ variable.name }} value: ${{ variable.value }} + + # handle variable groups - ${{ if ne(variable.group, '') }}: - group: ${{ variable.group }} + + # handle key-value variable syntax. + # example: + # - [key]: [value] + - ${{ if and(eq(variable.name, ''), eq(variable.group, '')) }}: + - ${{ each pair in variable }}: + - name: ${{ pair.key }} + value: ${{ pair.value }} + # Add additional variables - ${{ if and(ne(parameters.helixRepo, ''), eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notIn(variables['Build.Reason'], 'PullRequest')) }}: - name: _HelixSource diff --git a/global.json b/global.json index 5f9e33e3d..47ddc326d 100644 --- a/global.json +++ b/global.json @@ -9,6 +9,6 @@ "version": "3.0.100-preview-009764" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.18612.12" + "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.18613.20" } } -- GitLab