Skip to content

Commit 7059b0a

Browse files
author
git apple-llvm automerger
committed
Merge commit 'b7eba056b93c' from llvm.org/release/17.x into stable/20230725
2 parents 0994dc7 + b7eba05 commit 7059b0a

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/release-tasks.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,24 @@ jobs:
8383
- name: Checkout LLVM
8484
uses: actions/checkout@v3
8585

86+
- name: Setup Cpp
87+
uses: aminya/setup-cpp@v1
88+
with:
89+
compiler: llvm-16.0.6
90+
cmake: true
91+
ninja: true
92+
8693
- name: Install dependencies
87-
run: sudo apt-get install -y python3-setuptools
94+
run: |
95+
sudo apt-get update
96+
sudo apt-get install -y python3-setuptools python3-psutil
8897
8998
- name: Test lit
9099
run: |
91-
cd llvm/utils/lit
92-
python3 lit.py tests
100+
mkdir build && cd build
101+
export FILECHECK_OPTS='-dump-input-filter=all -vv -color'
102+
cmake ../llvm -DCMAKE_BUILD_TYPE=Release -G Ninja
103+
ninja -v -j $(nproc) check-lit
93104
94105
- name: Package lit
95106
run: |

0 commit comments

Comments
 (0)