-
Notifications
You must be signed in to change notification settings - Fork 10
/
.appveyor.yml
43 lines (37 loc) · 1.21 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
version: v2.1.0-{branch}-{build}
environment:
NSIS_ROOT: C:\Program Files (x86)\NSIS
CMAKE_TOOLKIT: v120_xp
matrix:
- QTDIR: C:\Qt\5.5\msvc2013_64
CMAKE_GENERATOR: Visual Studio 12 Win64
- QTDIR: C:\Qt\5.5\msvc2013
CMAKE_GENERATOR: Visual Studio 12
install:
- choco install nsis -pre
- set PATH=%PATH%;%QTDIR%/bin;%NSIS_ROOT%
- git clone https://github.com/neurosuite/libneurosuite.git
- cd libneurosuite
- cmake -G "%CMAKE_GENERATOR%" -T "%CMAKE_TOOLKIT%" .
- cmake --build . --target INSTALL --config Release
- cd ..
- git clone https://github.com/neurosuite/libcbsdk.git
- cd libcbsdk
- cmake -G "%CMAKE_GENERATOR%" -T "%CMAKE_TOOLKIT%" .
- cmake --build . --target INSTALL --config Release
- cd ..
build_script:
- mkdir build
- cd build
- cmake -D WITH_CEREBUS=ON -G "%CMAKE_GENERATOR%" -T "%CMAKE_TOOLKIT%" ..
- cmake --build . --target PACKAGE --config Release
test: off
artifacts:
- path: build\neuroscope-*.exe
name: NSIS Installer
deploy:
- provider: GitHub
auth_token:
secure: NIUGf3T938Kltzo+d2hsS82EoMjJ+12kv42KU02/XG4m4GF5WxkLGuedXuFV7yQx
on:
appveyor_repo_tag: true