Skip to content

Commit c6c5054

Browse files
author
pfeatherstone
committed
windows build
1 parent c9f9f26 commit c6c5054

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/windows_msvc.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Windows MSVC
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
windows-msvc:
13+
runs-on: windows-latest
14+
name: Windows MSVC
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Install dependencies
20+
run: choco install ninja cmake --yes
21+
22+
- name: Run CMake configuration and build
23+
run: |
24+
cmake examples -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
25+
cmake --build build --parallel
26+
27+
- name: Run Unit Tests
28+
run: .\build\tests.exe

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
![Ubuntu 24 GCC](https://github.com/pfeatherstone/https/actions/workflows/ubuntu24_gcc.yml/badge.svg)
44
![Ubuntu 24 Clang](https://github.com/pfeatherstone/https/actions/workflows/ubuntu24_clang.yml/badge.svg)
55
![macOS Clang](https://github.com/pfeatherstone/https/actions/workflows/macos_clang.yml/badge.svg)
6+
![Windows MSVC](https://github.com/pfeatherstone/https/actions/workflows/windows_msvc.yml/badge.svg)
67

78
# https
89
HTTPS and WSS library.

0 commit comments

Comments
 (0)