[llvm] workflows/release-binaries: Run tests on same machine as build (PR #129353)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 20:03:30 PST 2025


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

Testing to see if this fixes some of the test failures.

>From ba322b99535d3fbe53a9847100907f35b9a99452 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Fri, 28 Feb 2025 20:00:35 -0800
Subject: [PATCH] workflows/release-binaries: Run tests on same machine as
 build

Testing to see if this fixes some of the test failures.
---
 .github/workflows/release-binaries.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 231dd26e54ae0..996de807806e3 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -256,6 +256,11 @@ jobs:
         path: |
           ${{ needs.prepare.outputs.release-binary-filename }}
 
+    - name: Test
+      shell: bash
+      run: | 
+        ninja -C ${{ steps.setup-stage.outputs.build-prefix }}/build stage2-check-all
+
     # Clean up some build files to reduce size of artifact.
     - name: Clean Up Build Directory
       shell: bash



More information about the llvm-commits mailing list