[llvm] workflows/release-tasks: Setup FileCheck and not for release-lit (PR #66799)
Tulio Magno Quites Machado Filho via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 21 10:23:27 PDT 2023
================
@@ -83,13 +83,23 @@ jobs:
- name: Checkout LLVM
uses: actions/checkout at v4
+ - name: Setup Cpp
+ uses: aminya/setup-cpp at v1
+ with:
+ compiler: llvm-16.0.6
+ cmake: true
+ ninja: true
+
- name: Install dependencies
- run: sudo apt-get install -y python3-setuptools
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y python3-setuptools python3-psutil
- name: Test lit
run: |
- cd llvm/utils/lit
- python3 lit.py tests
+ mkdir build && cd build
+ cmake ../llvm -DCMAKE_BUILD_TYPE=Release -G Ninja
+ ninja -v -j $(nproc) check-lit
----------------
tuliom wrote:
It doesn't hurt to have extra verbosity.
Running this is not complex, but does require a specific setup.
I added included this suggestion in my last commit.
https://github.com/llvm/llvm-project/pull/66799
More information about the llvm-commits
mailing list