Skip to content

Commit

Permalink
CI: Add build on Windows using gcc toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-turney committed Jun 27, 2022
1 parent e55d837 commit 59f9bfd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,17 @@ jobs:
run: |
cd build
make test
win32:
runs-on: windows-latest
steps:
- run: git config --global core.autocrlf input
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
- name: Build
shell: msys2 {0}
run: |
mkdir build
cd build
cmake -DENABLE_STATIC=ON -DWITHOUT_COOKIEOPEN=ON ..
make

0 comments on commit 59f9bfd

Please sign in to comment.