Skip to content

Commit f9a4de5

Browse files
authored
Add CI for Windows (#72)
1 parent 215dfb3 commit f9a4de5

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 1.0.0.{build}
2+
image: Visual Studio 2019
3+
configuration:
4+
- Release
5+
- Debug
6+
7+
environment:
8+
matrix:
9+
- GENERATOR: Visual Studio 16 2019
10+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
11+
ARCH: Win32
12+
13+
- GENERATOR: Visual Studio 16 2019
14+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
15+
ARCH: x64
16+
17+
init: []
18+
19+
before_build:
20+
- md build
21+
- cd build
22+
- cmake --config "%CONFIGURATION%" -G "%GENERATOR%" ..
23+
build_script:
24+
- cmake --build . --config "%CONFIGURATION%"
25+
build:
26+
verbosity: minimal

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# TRANTOR
22

33
[![Build Status](https://travis-ci.org/an-tao/trantor.svg?branch=master)](https://travis-ci.org/an-tao/trantor)
4+
[![Build status](https://ci.appveyor.com/api/projects/status/yn8xunsubn37pi1u/branch/master?svg=true)](https://ci.appveyor.com/project/an-tao/trantor/branch/master)
45
[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/an-tao/trantor.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/an-tao/trantor/context:cpp)
56

67
A non-blocking I/O cross-platform TCP network library, using C++14.

0 commit comments

Comments
 (0)