Kaynağa Gözat

DXC Release build pipeline - add Linux config, improve display strings (#4719)

Helena Kotas 2 yıl önce
ebeveyn
işleme
4792ae561b
1 değiştirilmiş dosya ile 14 ekleme ve 0 silme
  1. 14 0
      azure-pipelines/DXC.Release.yml

+ 14 - 0
azure-pipelines/DXC.Release.yml

@@ -10,10 +10,22 @@ parameters:
 - name: BuildConfigurations
   type: object
   default: [Release, Debug]
+  displayName: Windows Build Configurations
 
 - name: BuildPlatforms
   type: object
   default: [x64, x86, arm64]
+  displayName: Windows Build Platforms
+
+- name: LinuxBuildConfigurations
+  type: object
+  default: [Release, Debug]
+  displayName: Linux Build Configurations
+
+- name: LinuxBuildPlatforms
+  type: object
+  default: [x64]
+  displayName: Linux Build Platforms
 
 resources:
   repositories:
@@ -27,4 +39,6 @@ extends:
   parameters:
     BuildConfigurations: ${{parameters.BuildConfigurations}}
     BuildPlatforms: ${{parameters.BuildPlatforms}}
+    LinuxBuildConfigurations: ${{parameters.LinuxBuildConfigurations}}
+    LinuxBuildPlatforms: ${{parameters.LinuxBuildPlatforms}}
     StatusEmail: $(StatusEmail)