We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e92520a commit e39aed5Copy full SHA for e39aed5
.github/workflows/build.yml
@@ -9,10 +9,14 @@ jobs:
9
runs-on: ${{ matrix.os }}-latest
10
steps:
11
- uses: actions/checkout@v4
12
+ - uses: llvm/actions/setup-windows@main
13
+ if: ${{ runner.os == 'Windows' }}
14
- name: Install Ninja
15
uses: llvm/actions/install-ninja@main
16
- name: Configure llvm cmake
- run: cmake -Bbuild -Sllvm -G Ninja -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_ENABLE_PROJECTS="lld;clang"
17
+ uses: llvm/actions/configure-llvm-project@main
18
+ with:
19
+ cmake_args: -Bbuild -Sllvm -G Ninja -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_ENABLE_PROJECTS="lld;clang"
20
- name: Build llvm core
21
run: cmake --build build --target LLVMCore
22
- name: Build clang
0 commit comments