From 0992a0af3bc1d9c78d611c3778eca86b575dbe4c Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Tue, 12 Sep 2023 12:46:28 -0400
Subject: [PATCH] SL-19243: Use consolidated viewer-build-util

instead of distinct viewer-post-bugsplat-{windows,mac} repos.
---
 .github/workflows/build.yaml | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 9f10275d7c0..7c1489e7fda 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -265,10 +265,17 @@ jobs:
 
   post-windows-symbols:
     needs: build
-    runs-on: windows
+    runs-on: ubuntu-latest
     steps:
+      - name: Checkout viewer-build-util
+        uses: actions/checkout@v3
+        with:
+          repository: secondlife/viewer-build-util
+          ref: main
+          path: .util
+
       - name: Post Windows symbols
-        uses: secondlife/viewer-post-bugsplat-windows@main
+        uses: .util/post-bugsplat-windows
         with:
           username: ${{ secrets.BUGSPLAT_USER }}
           password: ${{ secrets.BUGSPLAT_PASS }}
@@ -278,10 +285,17 @@ jobs:
 
   post-mac-symbols:
     needs: build
-    runs-on: macos-latest
+    runs-on: ubuntu-latest
     steps:
+      - name: Checkout viewer-build-util
+        uses: actions/checkout@v3
+        with:
+          repository: secondlife/viewer-build-util
+          ref: main
+          path: .util
+
       - name: Post Mac symbols
-        uses: secondlife/viewer-post-bugsplat-mac@main
+        uses: .util/post-bugsplat-mac
         with:
           username: ${{ secrets.BUGSPLAT_USER }}
           password: ${{ secrets.BUGSPLAT_PASS }}
-- 
GitLab