We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa5605 commit 41d1078Copy full SHA for 41d1078
.github/workflows/lit-tests.yml
@@ -15,8 +15,12 @@ jobs:
15
- name: Install dependencies
16
run: |
17
sudo apt-get update
18
- sudo apt-get install -y llvm-18-tools buildbot
+ sudo apt-get install -y llvm-18-tools
19
sudo ln -s /usr/lib/llvm-18/build/utils/lit/lit.py /usr/bin/lit
20
sudo ln -s /usr/bin/FileCheck-18 /usr/bin/FileCheck
21
+ python3 -m venv venv
22
+ source venv/bin/activate
23
+ pip install buildbot==3.11.7
24
+ echo "PATH=$PATH" >> "$GITHUB_ENV"
25
- name: Run lit tests
26
run: /usr/lib/llvm-18/build/utils/lit/lit.py -v --xfail jenkins/test_build.py test
0 commit comments