We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39f5889 commit 39bde17Copy full SHA for 39bde17
1 file changed
.github/workflows/blang.yml
@@ -23,3 +23,22 @@ jobs:
23
name: macos-out
24
path: ./bin/blang
25
26
+ windows-build:
27
+ runs-on: windows-latest
28
+
29
+ steps:
30
+ - uses: actions/checkout@v4
31
32
+ - name: Install dependencies
33
+ run: |
34
+ choco install llvm flex bison -y
35
+ refreshenv
36
37
+ - name: Build
38
+ run: cmake . && cmake --build .
39
40
+ - name: Save build artifacts
41
+ uses: actions/upload-artifact@v3
42
+ with:
43
+ name: windows-out
44
+ path: ./bin/blang.exe
0 commit comments