forked from opencpn-radar-pi/radar_pi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
62 lines (48 loc) · 1.68 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
clone_folder: c:\projects\radar_pi
shallow_clone: true
image:
- Visual Studio 2017
platform:
- Win32
configuration: Release
test: OFF
install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat"
# sent environment variables for wxWidgets
- set WXPARENT=C:\
- set WXWIN=C:\wxWidgets-3.1.2
- set wxWidgets_ROOT_DIR=%WXWIN%
- set wxWidgets_LIB_DIR=%WXWIN%\lib\vc_dll
- cmd: SET PATH=%PATH%;%WXWIN%;%wxWidgets_LIB_DIR%;C:\Program Files (x86)\Poedit\Gettexttools\bin;
# install dependencies:
- choco install poedit
- ps: Start-FileDownload http://opencpn.navnux.org/build_deps/nsis-3.04-setup.exe
- cmd: nsis-3.04-setup.exe /S
# Download and unzip wxwidgets
- ps: Start-FileDownload http://opencpn.navnux.org/build_deps/wxWidgets-3.1.2.7z
- cmd: 7z x wxWidgets-3.1.2.7z -o%WXWIN% > null
- set
before_build:
- cd c:\projects\radar_pi
- mkdir build
- cd build
- ps: Start-FileDownload https://downloads.sourceforge.net/project/opencpnplugins/opencpn_lib/4.99.1405-vc141_xp/opencpn.lib
- ps: Start-FileDownload http://opencpn.navnux.org/build_deps/OpenCPN_buildwin-4.99a.7z
- cmd: 7z x -y OpenCPN_buildwin-4.99a.7z -oc:\project\radar_pi\buildwin
- cmake -T v141_xp ..
build_script:
- cmake --build . --target package --config release
artifacts:
- path: 'build\*.exe'
name: installer
deploy:
description: 'release created by AppVeyor CI'
provider: GitHub
auth_token:
secure: 2caGomOXF3oh8vp/OJfmEyD/6V0rzeHVI1GnH8E+clL7AaPhzQCl9M4Y9xlsmX+2
artifact: installer,portable
draft: true
prerelease: true
tag: $(APPVEYOR_REPO_TAG_NAME)
on:
APPVEYOR_REPO_TAG: true # deploy on tag push only