File tree 5 files changed +14
-26
lines changed
common/pipelines/templates/steps
sdk/containerregistry/azure-mgmt-containerregistry
5 files changed +14
-26
lines changed Original file line number Diff line number Diff line change
1
+ # This script fragment is used across our repos to set a variable "SetDevVersion" which
2
+ # is used when this pipeline is going to be generating and publishing daily dev builds.
3
+
4
+ steps :
5
+ - pwsh : |
6
+ $setDailyDevBuild = "false"
7
+ if (('$(Build.Reason)' -eq 'Schedule') -and ('$(System.TeamProject)' -eq 'internal')) {
8
+ $setDailyDevBuild = "true"
9
+ }
10
+ echo "##vso[task.setvariable variable=SetDevVersion]$setDailyDevBuild"
11
+ displayName : " Setup Versioning Properties"
12
+ condition : eq(variables['SetDevVersion'], '')
Original file line number Diff line number Diff line change 1
- resources :
2
- repositories :
3
- - repository : azure-sdk-tools
4
- type : github
5
- name : azure/azure-sdk-tools
6
- endpoint : azure
7
- ref : refs/tags/azure-sdk-tools_20200608.1
8
- - repository : azure-sdk-build-tools
9
- type : git
10
- name : internal/azure-sdk-build-tools
11
- ref : refs/tags/azure-sdk-build-tools_20200514.1
12
-
13
1
parameters :
14
2
- name : Artifacts
15
3
type : object
Original file line number Diff line number Diff line change 1
- resources :
2
- repositories :
3
- - repository : azure-sdk-tools
4
- type : github
5
- name : azure/azure-sdk-tools
6
- endpoint : azure
7
- ref : refs/tags/azure-sdk-tools_20200608.1
8
- - repository : azure-sdk-build-tools
9
- type : git
10
- name : internal/azure-sdk-build-tools
11
- ref : refs/tags/azure-sdk-build-tools_20200514.1
12
-
13
1
parameters :
14
2
- name : Artifacts
15
3
type : object
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ parameters:
3
3
ServiceDirectory : ' '
4
4
5
5
steps :
6
- - template : tools/daily-dev-build-variable/ daily-dev-build-variable.yml@azure-sdk-tools
6
+ - template : /eng/common/pipelines/templates/steps/ daily-dev-build-variable.yml
7
7
8
8
- task : PythonScript@0
9
9
condition : eq(variables['SetDevVersion'],'true')
Original file line number Diff line number Diff line change 1
1
# Release History
2
2
3
- ## 3.0.0rc13(2020-05-15)
3
+ ## 3.0.0rc13 (2020-05-15)
4
4
5
5
** Features**
6
6
You can’t perform that action at this time.
0 commit comments