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.
2 parents 0994dc7 + b7eba05 commit 7059b0aCopy full SHA for 7059b0a
.github/workflows/release-tasks.yml
@@ -83,13 +83,24 @@ jobs:
83
- name: Checkout LLVM
84
uses: actions/checkout@v3
85
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
+
93
- name: Install dependencies
- 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
97
98
- name: Test lit
99
run: |
- cd llvm/utils/lit
- 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
104
105
- name: Package lit
106
0 commit comments