[llvm] workflows/release-tasks: Re-use release-binaries-all workflow (PR #125378)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 1 21:06:46 PST 2025


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/125378

This way we don't need to duplicate the list of supported targets in the release-tasks workflow.

>From ca815d7e457819eaef66a6ab88a3e182d5408554 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sat, 1 Feb 2025 21:04:36 -0800
Subject: [PATCH] workflows/release-tasks: Re-use release-binaries-all workflow

This way we don't need to duplicate the list of supported targets in
the release-tasks workflow.
---
 .github/workflows/release-tasks.yml | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/.github/workflows/release-tasks.yml b/.github/workflows/release-tasks.yml
index 780dd0ff6325c9f..52076ea1821b0b6 100644
--- a/.github/workflows/release-tasks.yml
+++ b/.github/workflows/release-tasks.yml
@@ -89,20 +89,10 @@ jobs:
     needs:
       - validate-tag
       - release-create
-    strategy:
-      fail-fast: false
-      matrix:
-        runs-on:
-          - ubuntu-22.04
-          - windows-2022
-          - macos-13
-          - macos-14
-
-    uses: ./.github/workflows/release-binaries.yml
+    uses: ./.github/workflows/release-binaries-all.yml
     with:
       release-version: ${{ needs.validate-tag.outputs.release-version }}
       upload: true
-      runs-on: ${{ matrix.runs-on }}
     # Called workflows don't have access to secrets by default, so we need to explicitly pass secrets that we use.
     secrets:
       RELEASE_TASKS_USER_TOKEN: ${{ secrets.RELEASE_TASKS_USER_TOKEN }}



More information about the llvm-commits mailing list