forked from mne-tools/mne-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
71 lines (61 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# MNE-CPP AppVeyor CI for Windows
version: 1.0.0-{build}
os: Visual Studio 2017
platform: x64
configuration:
- windows_release
- windows_tests
install:
- set QTDIR=C:\Qt\5.9.2\msvc2017_64
- set PATH=%PATH%;%QTDIR%\bin;C:\Qt\Tools\QtCreator\bin;C:\Qt\QtIFW2.0.1\bin
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
build:
parallel: true
#quiet|minimal|normal|detailed
verbosity: detailed
before_build:
- call .\tools\appveyor\%CONFIGURATION%\before_build.bat
build_script:
- call .\tools\appveyor\%CONFIGURATION%\build.bat
after_build:
- call .\tools\appveyor\%CONFIGURATION%\after_build.bat
before_test:
- call .\tools\appveyor\%CONFIGURATION%\before_test.bat
test_script:
- call .\tools\appveyor\%CONFIGURATION%\test.bat
artifacts:
- path: mne-cpp-windows-x86_64-$(APPVEYOR_REPO_BRANCH).exe
name: installer
- path: mne-cpp-windows-x86_64-$(APPVEYOR_REPO_BRANCH).zip
name: bin_archive
deploy:
# master
- provider: FTP
protocol: ftp
host:
secure: ckK4+pPybTYYRiKxXpZScwZlxRmpxUgTvZaTN+vVAfU=
username:
secure: aUqYXjXjd4dh3sO18+x8qw==
password:
secure: u8DCGb7s6kuPyjybX/THWFQ0VMCfpLD5IsB/9nzGnvk=
artifact: installer,bin_archive
on:
branch: master
# 1.0.0
- provider: FTP
protocol: ftp
host:
secure: ckK4+pPybTYYRiKxXpZScwZlxRmpxUgTvZaTN+vVAfU=
username:
secure: OjcVi/WSo4rGcclzEOQCEw==
password:
secure: 8mgxeu0zEr2vEble0FcDE0BlVbw+4zo1j+J4QigGUvk=
artifact: installer,bin_archive
on:
branch: 1.0.0
notifications:
- provider: Email
to:
on_build_status_changed: true