forked from sccn/lsl_archived
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
45 lines (38 loc) · 1.21 KB
/
appveyor.yml
File metadata and controls
45 lines (38 loc) · 1.21 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
version: 1.40.{build}
pull_requests:
do_not_increment_build_number: true
skip_non_tags: true
shallow_clone: true
environment:
VCVER: 14.0
QTVER: 5.10.0
QTCOMPILER: msvc2015
ARCH: x86
CMakeArgs: "-DLSLAPPS_LabRecorder=1"
install:
- cmd: >-
appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip -FileName ninja.zip
7z x ninja.zip -oC:\projects\deps\ninja > nul
set PATH=C:\projects\deps\ninja;%PATH%
ninja --version
build_script:
- cmd: >-
call "C:\Program Files (x86)\Microsoft Visual Studio %VCVER%\VC\vcvarsall.bat" %ARCH%
mkdir build
cd build
cmake -G Ninja -DQt5_DIR=C:/Qt/%QTVER%/%QTCOMPILER%/lib/cmake/Qt5 -DBOOST_ROOT=C:/Libraries/boost_1_63_0 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install %CMakeArgs% ../
cmake --build . --config Release --target LSLPACKAGE
artifacts:
- path: build/install
name: lsl_%ARCH%_%QTCOMPILER%_$(APPVEYOR_BUILD_VERSION)_${APPVEYOR_REPO_COMMIT}
deploy:
- provider: BinTray
username: tstenner
api_key:
secure: zcgGai0IfIlkwU5IXEvoJ/Kr+w2DbKIBJr/677Q52BPwUT0aFWSvJuZp2obpY3u5
subject: tstenner
repo: labstreaminglayer
package: LSL
publish: false
explode: false
override: false