Skip to content

Commit 6f2ffae

Browse files
committed
Add initial GitHub action for building on Windows
1 parent 7e21188 commit 6f2ffae

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,17 @@ jobs:
141141

142142
- name: Install PHP
143143
run: cmake --install php-build/all-enabled
144+
145+
windows:
146+
runs-on: windows-latest
147+
name: Windows.${{ matrix.compiler.name }}.${{ matrix.generator }}
148+
steps:
149+
- name: Checkout
150+
uses: actions/checkout@v4
151+
with:
152+
fetch-depth: 2
153+
154+
- name: Build and install
155+
run: |
156+
cmake --preset windows
157+
cmake --build --preset windows -j

0 commit comments

Comments
 (0)