diff --git a/.github/workflows/release-tasks.yml b/.github/workflows/release-tasks.yml index 5604b48857dbe2..27e147e5a91b40 100644 --- a/.github/workflows/release-tasks.yml +++ b/.github/workflows/release-tasks.yml @@ -83,13 +83,24 @@ jobs: - name: Checkout LLVM uses: actions/checkout@v3 + - name: Setup Cpp + uses: aminya/setup-cpp@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 + export FILECHECK_OPTS='-dump-input-filter=all -vv -color' + cmake ../llvm -DCMAKE_BUILD_TYPE=Release -G Ninja + ninja -v -j $(nproc) check-lit - name: Package lit run: |