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 2692ff8 commit 3224240Copy full SHA for 3224240
.github/build-llvm-for-windows.yaml
@@ -0,0 +1,37 @@
1
+name: Build LLVM for Windows
2
+
3
+on:
4
+ push:
5
+ branches: [ build ]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Install dependencies
19
+ run: |
20
+ choco install ninja cmake -y
21
22
+ - name: Configure LLVM
23
24
+ mkdir build
25
+ cd build
26
+ cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release ../llvm
27
28
+ - name: Build LLVM
29
30
31
+ ninja
32
33
+ - name: Archive Build Artifacts
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: llvm-windows-build
37
+ path: build/
0 commit comments