From 2567d7614baad202f853ee8cfc74bd8ea25f9d0e Mon Sep 17 00:00:00 2001
From: Seeker186 <101211595+Seeker186@users.noreply.github.com>
Date: Wed, 29 Jun 2022 15:14:59 -0700
Subject: [PATCH] Added composite artifact publishing for the missing
 architectures the pipelines failed in.

---
 .azure/pipelines/ci.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml
index b0b5c675e5b..db8ea332101 100644
--- a/.azure/pipelines/ci.yml
+++ b/.azure/pipelines/ci.yml
@@ -374,6 +374,8 @@ stages:
         includeForks: true
       - name: MacOS_arm64_Packages
         path: artifacts/packages/
+      - name: MacOS_arm64_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -404,6 +406,8 @@ stages:
         includeForks: true
       - name: MacOS_x64_Packages
         path: artifacts/packages/
+      - name: MacOS_x64_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -451,6 +455,8 @@ stages:
         includeForks: true
       - name: Linux_x64_Packages
         path: artifacts/packages/
+      - name: Linux_x64_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -482,6 +488,8 @@ stages:
         includeForks: true
       - name: Linux_arm_Packages
         path: artifacts/packages/
+      - name: Linux_arm_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -522,6 +530,8 @@ stages:
         includeForks: true
       - name: Linux_arm64_Packages
         path: artifacts/packages/
+      - name: Linux_arm64_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -557,6 +567,8 @@ stages:
         includeForks: true
       - name: Linux_musl_x64_Packages
         path: artifacts/packages/
+      - name: Linux_musl_x64_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -591,6 +603,8 @@ stages:
         includeForks: true
       - name: Linux_musl_arm_Packages
         path: artifacts/packages/
+      - name: Linux_musl_arm_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
@@ -625,6 +639,8 @@ stages:
         includeForks: true
       - name: Linux_musl_arm64_Packages
         path: artifacts/packages/
+      - name: Linux_musl_arm64_CompositeImages
+        path: artifacts/obj/Composite/Release
 
   - ${{ if ne(variables.PostBuildSign, 'true') }}:
     - template: jobs/codesign-xplat.yml
-- 
GitLab