Skip to content

Commit 59f9bfd

Browse files
committed
CI: Add build on Windows using gcc toolchain
1 parent e55d837 commit 59f9bfd

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,17 @@ jobs:
2828
run: |
2929
cd build
3030
make test
31+
32+
win32:
33+
runs-on: windows-latest
34+
steps:
35+
- run: git config --global core.autocrlf input
36+
- uses: actions/checkout@v2
37+
- uses: msys2/setup-msys2@v2
38+
- name: Build
39+
shell: msys2 {0}
40+
run: |
41+
mkdir build
42+
cd build
43+
cmake -DENABLE_STATIC=ON -DWITHOUT_COOKIEOPEN=ON ..
44+
make

0 commit comments

Comments
 (0)