forked from treefrogframework/treefrog-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (34 loc) · 983 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
#
# 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
# 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;%PATH%
- cmd: echo %PATH%
- cmd: configure.bat
- cmd: cd src
- cmd: nmake install
- cmd: cd ..\tools
- cmd: nmake install