-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
105 lines (89 loc) · 3.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
version: 1.0.{build}
image:
- Visual Studio 2017
- Ubuntu1804
test: off
configuration:
- Release
for:
- matrix:
only:
- image: Visual Studio 2017
clone_folder: C:\projects\autopanorama
install:
- set QTDIR=C:\Qt\5.11.3\msvc2017_64
- set PATH=%PATH%;%QTDIR%\bin
############################################################################
# Clone submodules
############################################################################
- cd C:\projects\autopanorama
- git submodule init
- git submodule update --depth 1 --init --recursive
############################################################################
# All external dependencies are installed in C:\projects\deps
############################################################################
- mkdir C:\projects\deps
- cd C:\projects\deps
############################################################################
# Install Ninja
############################################################################
- set NINJA_URL="https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-win.zip"
- appveyor DownloadFile %NINJA_URL% -FileName ninja.zip
- 7z x ninja.zip -oC:\projects\deps\ninja > nul
- set PATH=C:\projects\deps\ninja;%PATH%
- ninja --version
############################################################################
# Install a recent CMake
############################################################################
- set CMAKE_URL="https://cmake.org/files/v3.18/cmake-3.18.4-win64-x64.zip"
- appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip
- 7z x cmake.zip -oC:\projects\deps > nul
- move C:\projects\deps\cmake-* C:\projects\deps\cmake # Move to a version-agnostic directory
- set PATH=C:\projects\deps\cmake\bin;%PATH%
- cmake --version
############################################################################
# Install Eigen
############################################################################
- set EIGEN_URL="https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.zip"
- appveyor DownloadFile %EIGEN_URL% -FileName eigen.zip
- 7z x eigen.zip -oC:\projects\deps > nul
- move C:\projects\deps\eigen-* C:\projects\deps\eigen # Move to a version-agnostic directory
- set INCLUDE=C:\projects\deps\eigen;%INCLUDE%
before_build:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
- cd C:\projects\autopanorama
- md build
- cd build
build_script:
- cd c:\projects\autopanorama\build\
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_SH="CMAKE_SH-NOTFOUND" ../
- cmake --build . --target package
artifacts:
- path: build\autopanorama-*.exe
name: nsis
- matrix:
only:
- image: Ubuntu1804
install:
- git submodule init
- git submodule update --depth 1 --init --recursive
- sudo apt update && sudo apt-get install -y qt5-default libeigen3-dev
build_script:
- NCPU=$(nproc)
- echo "Will compile on $NCPU CPUs"
- mkdir build && cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release
- make -j$NCPU package
- dpkg -c *.deb
artifacts:
- path: build/*.deb
name: ubuntu1804
deploy:
description: "Automatic release from AppVeyor"
provider: GitHub
auth_token:
secure: ZXNglLjYiDZKntOtUYbC/3iVcAJ/VSiaGNMxV++LlWR9uyp4yysVRCEkr3SYpLVK
draft: false
prerelease: false
on:
APPVEYOR_REPO_TAG: true