summaryrefslogtreecommitdiff
path: root/eng/common/templates/post-build/common-variables.yml
blob: 0a2c40c1035cf2ad01a4f8ee50e3069f7845d666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
variables:
  - group: AzureDevOps-Artifact-Feeds-Pats
  - group: DotNet-Blob-Feed
  - group: DotNet-DotNetCli-Storage
  - group: DotNet-MSRC-Storage
  - group: Publish-Build-Assets

  # .NET Core 3.1 Dev
  - name: PublicDevRelease_31_Channel_Id
    value: 128

  # .NET Core 5 Dev
  - name: NetCore_5_Dev_Channel_Id
    value: 131

  # .NET Tools - Validation
  - name: NetCore_Tools_Validation_Channel_Id
    value: 9

  # .NET Tools - Latest
  - name: NetCore_Tools_Latest_Channel_Id
    value: 2

  # .NET 3 Tools - Validation
  - name: NETCore_3_Tools_Validation_Channel_Id
    value: 390

  # .NET 3 Tools - Latest
  - name: NetCore_3_Tools_Channel_Id
    value: 344

  # .NET Core 3.0 Internal Servicing
  - name: InternalServicing_30_Channel_Id
    value: 184

  # .NET Core 3.0 Release
  - name: PublicRelease_30_Channel_Id
    value: 19

  # .NET Core 3.1 Release
  - name: PublicRelease_31_Channel_Id
    value: 129

  # General Testing
  - name: GeneralTesting_Channel_Id
    value: 529

  # .NET Core 3.1 Blazor Features
  - name: NetCore_31_Blazor_Features_Channel_Id
    value: 531

  # Whether the build is internal or not
  - name: IsInternalBuild
    value: ${{ and(ne(variables['System.TeamProject'], 'public'), contains(variables['Build.SourceBranch'], 'internal')) }}

  # Default Maestro++ API Endpoint and API Version
  - name: MaestroApiEndPoint
    value: "https://maestro-prod.westus2.cloudapp.azure.com"
  - name: MaestroApiAccessToken
    value: $(MaestroAccessToken)
  - name: MaestroApiVersion
    value: "2019-01-16"

  - name: SourceLinkCLIVersion
    value: 3.0.0
  - name: SymbolToolVersion
    value: 1.0.1

  # Feed Configurations
  # These should include the suffix "/index.json"

  # Default locations for Installers and checksums
  # Public Locations
  - name: ChecksumsBlobFeedUrl
    value: https://dotnetclichecksums.blob.core.windows.net/dotnet/index.json
  - name: InstallersBlobFeedUrl
    value: https://dotnetcli.blob.core.windows.net/dotnet/index.json

  # Private Locations
  - name: InternalChecksumsBlobFeedUrl
    value: https://dotnetclichecksumsmsrc.blob.core.windows.net/dotnet/index.json
  - name: InternalChecksumsBlobFeedKey
    value: $(dotnetclichecksumsmsrc-storage-key)

  - name: InternalInstallersBlobFeedUrl
    value: https://dotnetclimsrc.blob.core.windows.net/dotnet/index.json
  - name: InternalInstallersBlobFeedKey
    value: $(dotnetclimsrc-access-key)