Skip to content
This repository was archived by the owner on Apr 6, 2019. It is now read-only.

Commit c02774e

Browse files
zodiac403Cylix
authored andcommitted
Create Windows build job with AppVeyor (#124)
* Create .appveyor.yml Create new branch from master. Add CI recipe. * Init git Submodule. Include tacopie. * Select SLN explicitly.
1 parent 1838672 commit c02774e

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.appveyor.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Notes:
2+
# - Minimal appveyor.yml file is an empty file. All sections are optional.
3+
# - Indent each level of configuration with 2 spaces. Do not use tabs!
4+
# - All section names are case-sensitive.
5+
# - Section names should be unique on each level.
6+
7+
#---------------------------------#
8+
# general configuration #
9+
#---------------------------------#
10+
11+
# version format
12+
version: 1.0.{build}
13+
14+
#---------------------------------#
15+
# environment configuration #
16+
#---------------------------------#
17+
18+
# Build worker image (VM template)
19+
image: Visual Studio 2017
20+
21+
#---------------------------------#
22+
# build configuration #
23+
#---------------------------------#
24+
25+
platform:
26+
- x64
27+
- x86
28+
29+
configuration:
30+
- Debug
31+
- Release
32+
33+
# scripts to run before build
34+
before_build:
35+
- echo Get tacopie submodule
36+
- git submodule init && git submodule update
37+
38+
build:
39+
project: msvc15/cpp_redis.sln # path to Visual Studio solution or project

0 commit comments

Comments
 (0)