-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathappveyor.yml
56 lines (42 loc) · 1.24 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
55
56
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: '0.9375-{build}'
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2015
# clone directory
clone_folder: c:\projects\byteicon
# set clone depth
clone_depth: 3 # clone entire repository history if not defined
# environment variables
environment:
QTDIR: C:\Qt\5.7\msvc2015
skip_commits:
files:
- .travis.yml
#---------------------------------#
# build configuration #
#---------------------------------#
# scripts to run before build
before_build:
- set PATH=%PATH%;%QTDIR%\bin
- '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"'
# to run your custom scripts instead of automatic MSBuild
build_script:
- qmake main.pro
- nmake
#---------------------------------#
# tests configuration #
#---------------------------------#
# to disable automatic tests
test: off
#---------------------------------#
# artifacts configuration #
#---------------------------------#
# pushing a single file
artifacts:
- path: release\byteicon.exe