[llvm-branch-commits] [llvm] workflows/premerge: Enable macos builds (PR #125176)

Tom Stellard via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jan 30 22:33:14 PST 2025


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

We still have buildkite for testing Linux and Windows, so we don't need to enable those builds yet.

>From 713b5e7ea877db545526f88c0513c5f462dba62d Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 30 Jan 2025 22:31:24 -0800
Subject: [PATCH] workflows/premerge: Enable macos builds

We still have buildkite for testing Linux and Windows, so we don't need
to enable those builds yet.
---
 .github/workflows/premerge.yaml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index d7fa6718821861..49ffcc0c7ddd24 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -5,8 +5,6 @@ permissions:
 
 on:
   pull_request:
-    paths:
-      - .github/workflows/premerge.yaml
   push:
     branches:
       - 'main'
@@ -14,7 +12,7 @@ on:
 
 jobs:
   premerge-checks-linux:
-    if: github.repository_owner == 'llvm'
+    if: false && github.repository_owner == 'llvm'
     runs-on: llvm-premerge-linux-runners
     concurrency:
       group: ${{ github.workflow }}-linux-${{ github.event.pull_request.number || github.sha }}
@@ -73,7 +71,7 @@ jobs:
           ./.ci/monolithic-linux.sh "$(echo ${linux_projects} | tr ' ' ';')" "$(echo ${linux_check_targets})" "$(echo ${linux_runtimes} | tr ' ' ';')" "$(echo ${linux_runtime_check_targets})"
 
   premerge-checks-windows:
-    if: github.repository_owner == 'llvm'
+    if: false && github.repository_owner == 'llvm'
     runs-on: llvm-premerge-windows-runners
     concurrency:
       group: ${{ github.workflow }}-windows-${{ github.event.pull_request.number || github.sha }}



More information about the llvm-branch-commits mailing list