From 78ced13a5ab00ea4d4893bea57766fbb89153833 Mon Sep 17 00:00:00 2001 From: Ryosuke Asano Date: Wed, 5 Feb 2025 10:05:48 +0900 Subject: [PATCH] Build macOS build after Windows build --- .github/workflows/deployments.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deployments.yml b/.github/workflows/deployments.yml index 0621a047a950..a782d22dfbc4 100644 --- a/.github/workflows/deployments.yml +++ b/.github/workflows/deployments.yml @@ -142,6 +142,7 @@ jobs: #----------------------------------------- macOS -----------------------------------------# Part1-macOS-Universal-build-with-profgen: + needs: Part3-win-x86_64-build-with-profdata-and-jarlog uses: ./.github/workflows/macOS-Universal.yml with: profgen: true @@ -150,7 +151,7 @@ jobs: PAT: ${{ secrets.PAT }} Part2-macOS-Universal-gen-profdata-and-jarlog: - needs: Part1-macOS-Universal-build-with-profgen + needs: [Part1-macOS-Universal-build-with-profgen] uses: ./.github/workflows/macOS-generate-profile-data-and-jarlog.yml secrets: PAT: ${{ secrets.PAT }}