Skip to content

Commit 39bde17

Browse files
committed
add windows build support
1 parent 39f5889 commit 39bde17

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/blang.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,22 @@ jobs:
2323
name: macos-out
2424
path: ./bin/blang
2525

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

Comments
 (0)