Skip to content

Commit 2f63234

Browse files
committed
CI: add windows builder
1 parent 2d23438 commit 2f63234

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/c-cpp.yml .github/workflows/debian-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: C/C++ CI
1+
name: Debian Build
22

33
on:
44
push:
5-
# branches: [ $default-branch ]
5+
branches: [ $default-branch ]
66
pull_request:
77
branches: [ $default-branch ]
88

.github/workflows/windows-build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Windows Build
2+
3+
on:
4+
push:
5+
# branches: [ $default-branch ]
6+
pull_request:
7+
branches: [ $default-branch ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: windows-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: ilammy/msvc-dev-cmd@latest
17+
- name: build
18+
run: nmake

0 commit comments

Comments
 (0)