forked from treefrogframework/treefrog-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
46 lines (38 loc) · 1.16 KB
/
appveyor.yml
File metadata and controls
46 lines (38 loc) · 1.16 KB
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
#
# appveyor.yml
#
branches:
only:
- master
# Do not build on tags (GitHub and BitBucket)
skip_tags: true
# Skipping commits affecting specific files (GitHub only).
skip_commits:
files:
- docs/*
- '**/*.html'
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2015
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf false
install:
- vcpkg install --recurse sqlite3[tool] curl[tool]
# to disable automatic builds
build: off
# to run your custom scripts instead of automatic MSBuild
build_script:
- cmd: call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
- cmd: set PATH=C:\Qt\5.9\msvc2015_64\bin;C:\tools\vcpkg\installed\x86-windows\tools;C:\tools\vcpkg\installed\x86-windows\tools\curl;%PATH%
- cmd: echo %PATH%
- cmd: configure.bat
- cmd: cd src
- cmd: nmake install
- cmd: cd ..\tools
- cmd: nmake install
- cmd: cd test
- cmd: releasetest\releasetest.bat