forked from seandepagnier/weather_routing_pi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
77 lines (63 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
clone_folder: c:\project\ocpn_project
shallow_clone: false
clone_depth: 10
image:
- Visual Studio 2017
platform:
# - x64
- Win32
configuration: Release
test: OFF
environment:
OCPN_TARGET: MSVC
install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat"
# sent environment variables for wxWidgets
- 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
- choco install git
# http://opencpn.navnux.org/build_deps/nsis-3.04-setup.exe - no longer available, replaced with below
- ps: Start-FileDownload https://download.opencpn.org/s/54HsBDLNzRZLL6i/download -FileName nsis-3.04-setup.exe
- cmd: nsis-3.04-setup.exe /S
# Download and unzip wxwidgets
# http://opencpn.navnux.org/build_deps/wxWidgets-3.1.2.7z - no longer available, replaced with below
- ps: Start-FileDownload https://download.opencpn.org/s/E2p4nLDzeqx4SdX/download -FileName wxWidgets-3.1.2.7z
- cmd: 7z x wxWidgets-3.1.2.7z -o%WXWIN% > null
- set
before_build:
- cd c:\project\ocpn_project
- cd buildwin
- ps: Start-FileDownload https://downloads.sourceforge.net/project/opencpnplugins/opencpn_packaging_data/PVW32Con.exe
- cd ..
- rm -rf build && mkdir build && cd build
#- ps: Start-FileDownload https://downloads.sourceforge.net/project/opencpnplugins/opencpn_lib/4.99.1405-vc141_xp/opencpn.lib - no longer available, replaced with below
- ps: Start-FileDownload https://sourceforge.net/projects/opencpnplugins/files/opencpn.lib
# http://opencpn.navnux.org/build_deps/OpenCPN_buildwin-4.99a.7z - no longer available, replaced with below
- ps: Start-FileDownload https://download.opencpn.org/s/oibxM3kzfzKcSc3/download -FileName OpenCPN_buildwin-4.99a.7z
- cmd: 7z x -y OpenCPN_buildwin-4.99a.7z -oc:\project\ocpn_project\buildwin
- cmake -T v141_xp ..
build_script:
- cmake --build . --target package --config Release
- python -m ensurepip
- python -m pip install -q setuptools
- python -m pip install -q cloudsmith-cli
- bash ../build/cloudsmith-upload.sh
artifacts:
- path: 'build\*.exe'
name: installer
# Removed from process as not providing real benefit at the moment
#deploy:
# description: 'release created by AppVeyor CI'
# provider: GitHub
# #auth_token: '%GitHub_auth_token%'
# auth_token: '%GIT-PTOKEN-testplugin_pi-INTO-APPVEYOR%'
# artifact: installer,portable
# draft: true
# prerelease: true
# on:
# appveyor_repo_tag: true # deploy on tag push only
# configuration: Release # Debug contains non-redist MS DLLs