forked from LibrePCB/LibrePCB
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
32 lines (27 loc) · 821 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
version: '{build}'
os: Windows Server 2012
configuration: Debug
build: off
test: off
deploy: off
environment:
global:
CC: "ccache gcc"
CXX: "ccache g++"
MINGW: C:/Qt/Tools/mingw530_32
QTDIR: C:/Qt/5.9/mingw53_32
QTIFWDIR: C:/Qt/QtIFW-3.0.1
VCRT_DIR: 'C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/Redist/x86/Microsoft.VC120.CRT'
DEPLOY_INSTALLER: true
cache:
- C:/msys64/home/appveyor/.ccache
init:
- set PATH=%QTDIR%/bin;%MINGW%/bin;C:/Qt/Tools/QtCreator/bin;%QTIFWDIR%/bin;C:/msys64/bin;C:/msys64/usr/bin;C:/msys64/mingw64/bin;%PATH%
install:
- git submodule update --init --recursive
- bash -c "./ci/install_dependencies.sh"
build_script:
- bash -c "./ci/stylecheck.sh"
- bash -c "./ci/build.sh"
- bash -c "./ci/test.sh"
- bash -c "./ci/upload_artifacts.sh"