forked from kubo/funchook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
42 lines (32 loc) · 913 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 0.1.{build}
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2015
# scripts that run after cloning repository
install:
- git submodule init
- git submodule update
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU
platform:
- x86
- x64
# build Configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release
build:
project: win32/funchook.sln
#---------------------------------#
# tests configuration #
#---------------------------------#
test_script:
- for /f "tokens=*" %%a in ('dir funchook_test.exe /b /s') do %%a