forked from VirusTotal/yara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
54 lines (42 loc) · 1.18 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
# AppVeyor CI for Windows
version: 3.7.{build}
pull_requests:
do_not_increment_build_number: true
environment:
matrix:
- TARGET: vs2015
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
VisualStudioVersion: 14.0
configuration: Release
platform: x86
- TARGET: vs2015
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
VisualStudioVersion: 14.0
platform: x64
configuration: Release
- TARGET: cygwin
for:
-
matrix:
only:
- TARGET: cygwin
build_script:
- cmd: C:\cygwin64\bin\bash -e -l -c "cd c:/projects/yara && ./build.sh"
test_script:
- cmd: C:\cygwin64\bin\bash -e -l -c "cd c:/projects/yara && make check"
-
matrix:
only:
- TARGET: vs2015
before_build:
- ps: nuget restore windows/vs2015/yara.sln
build:
project: windows/vs2015/yara.sln
verbosity: minimal
artifacts:
- path: windows\**\*.exe
test: off
# Uncomment the lines below for enabling Remote Desktop in the Appveyor. This
# allows connecting to the remote machine and debug issues.
# on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))