[llvm] workflows/release-binaries: Run tests on the same runner as the build (PR #162421)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 9 13:43:42 PDT 2025


================
@@ -258,17 +248,11 @@ jobs:
         path: |
           ${{ needs.prepare.outputs.release-binary-filename }}
 
-    # Clean up some build files to reduce size of artifact.
-    - name: Clean Up Build Directory
-      shell: bash
+    - name: Run Tests
+      # These almost always fail so don't let them fail the build and prevent the uploads.
+      continue-on-error: true
       run: |
----------------
tstellar wrote:

bash is the default shell for Linux and Mac, so I don't think it's necessary.  I think the other jobs have it from when we used to do Windows builds and had to explicitly select bash as the shell.

https://github.com/llvm/llvm-project/pull/162421


More information about the llvm-commits mailing list