[llvm-branch-commits] [llvm] [Githbu][TestingTools] Build on multiple platforms (PR #190884)

Aiden Grossman via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Apr 7 19:08:44 PDT 2026


https://github.com/boomanaiden154 updated https://github.com/llvm/llvm-project/pull/190884

>From 69ede61447e11ac9edb9f912ba302a65ae3e8ec4 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Wed, 8 Apr 2026 02:05:12 +0000
Subject: [PATCH 1/2] windows fix

Created using spr 1.3.7
---
 .github/workflows/release-llvm-testing-tools.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release-llvm-testing-tools.yml b/.github/workflows/release-llvm-testing-tools.yml
index e265a4777afc5..733b304143efa 100644
--- a/.github/workflows/release-llvm-testing-tools.yml
+++ b/.github/workflows/release-llvm-testing-tools.yml
@@ -26,8 +26,8 @@ jobs:
         run: |
           mkdir build
           cd build
-          cmake -GNinja \
-            -DCMAKE_BUILD_TYPE=Release \
+          cmake -GNinja `
+            -DCMAKE_BUILD_TYPE=Release `
             ../llvm
           ninja split-file FileCheck
       - name: Build Package

>From 4a26972bc241e84fb21b5743eaae2e7f136a53a6 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Wed, 8 Apr 2026 02:08:32 +0000
Subject: [PATCH 2/2] actual windows fix

Created using spr 1.3.7
---
 .github/workflows/release-llvm-testing-tools.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.github/workflows/release-llvm-testing-tools.yml b/.github/workflows/release-llvm-testing-tools.yml
index 733b304143efa..823d6b57df2cf 100644
--- a/.github/workflows/release-llvm-testing-tools.yml
+++ b/.github/workflows/release-llvm-testing-tools.yml
@@ -26,9 +26,7 @@ jobs:
         run: |
           mkdir build
           cd build
-          cmake -GNinja `
-            -DCMAKE_BUILD_TYPE=Release `
-            ../llvm
+          cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../llvm
           ninja split-file FileCheck
       - name: Build Package
         run: |



More information about the llvm-branch-commits mailing list