forked from cdcseacave/openMVS
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.appveyor.yml
125 lines (118 loc) · 4.04 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# specify version format
version: "{build}"
image:
- Visual Studio 2017
- ubuntu1804
- macos
platform:
- x64
# specify custom environment variables
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
# build configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release
# branches to build
branches:
# blacklist
except:
- gh-pages
for:
-
#------------------
# Windows 10
#------------------
matrix:
only:
- image: Visual Studio 2017
# scripts that are called at very beginning, before repo cloning
init:
- ver
- cmake --version
- msbuild /version
# scripts that run after cloning repository
install:
# update vcpkg
- cd C:\tools\vcpkg
- git pull
- .\bootstrap-vcpkg.bat
- if "%platform%"=="Win32" set VCPKG_ARCH=x86-windows
- if "%platform%"=="x64" set VCPKG_ARCH=x64-windows
# remove outdated versions
- vcpkg remove --outdated --recurse
# install dependencies
- vcpkg install --recurse --triplet %VCPKG_ARCH% zlib boost-iostreams boost-program-options boost-system boost-serialization eigen3 cgal[core] opencv glew glfw3
- vcpkg integrate install
- cd "%APPVEYOR_BUILD_FOLDER%"
# preserve contents of selected directories and files across project builds
cache:
- 'C:\tools\vcpkg\installed'
build_script:
- git clone https://github.com/cdcseacave/VCG.git
- if "%platform%"=="Win32" set CMAKE_GENERATOR=-G"Visual Studio 15 2017"
- if "%platform%"=="x64" set CMAKE_GENERATOR=-G"Visual Studio 15 2017 Win64"
- mkdir bin && cd bin
- cmake %CMAKE_GENERATOR% -DCMAKE_BUILD_TYPE=%Configuration% -DCMAKE_TOOLCHAIN_FILE="C:\tools\vcpkg\scripts\buildsystems\vcpkg.cmake" -DVCG_ROOT="%APPVEYOR_BUILD_FOLDER%\VCG" ..
- cmake --build . --target ALL_BUILD --config %Configuration% -- /maxcpucount:4
-
#------------------
# Ubuntu 18.04 LTS
#------------------
matrix:
only:
- image: ubuntu1804
# scripts that are called at very beginning, before repo cloning
init:
- lsb_release -a
- cmake --version
- gcc -v
# scripts that run after cloning repository
install:
- sudo apt-get update -qq && sudo apt-get install -qq
- sudo apt-get -y install build-essential git cmake libpng-dev libjpeg-dev libtiff-dev libglu1-mesa-dev libxmu-dev libxi-dev
- sudo apt-get -y install libboost-iostreams-dev libboost-program-options-dev libboost-system-dev libboost-serialization-dev
- sudo apt-get -y install libopencv-dev libcgal-dev libcgal-qt5-dev libatlas-base-dev
- sudo apt-get -y install freeglut3-dev libglew-dev libglfw3-dev
# preserve contents of selected directories and files across project builds
cache:
- '/usr/lib/x86_64-linux-gnu/'
build_script:
- git clone https://github.com/cdcseacave/VCG.git
- git clone --single-branch --branch 3.2 https://gitlab.com/libeigen/eigen.git
- mkdir eigen_build && cd eigen_build
- cmake . ../eigen
- make && sudo make install
- cd ..
- mkdir bin && cd bin
- cmake -DCMAKE_BUILD_TYPE=$Configuration -DVCG_ROOT="$APPVEYOR_BUILD_FOLDER/VCG" ..
- make
-
#------------------
# MacOS
#------------------
matrix:
only:
- image: macos
# scripts that are called at very beginning, before repo cloning
init:
- system_profiler SPSoftwareDataType
- cmake --version
- gcc -v
# scripts that run after cloning repository
install:
- brew update
- printf "#%s/bin/bash\nbrew install libomp boost eigen opencv cgal glew glfw3\nexit 0\n" "!" > install.sh
- chmod +x install.sh
- ./install.sh
# preserve contents of selected directories and files across project builds
cache:
- '/usr/local/Cellar/'
build_script:
- git clone https://github.com/cdcseacave/VCG.git
- mkdir bin && cd bin
- cmake -DCMAKE_BUILD_TYPE=$CONFIGURATION -DVCG_ROOT="$APPVEYOR_BUILD_FOLDER/VCG" ..
- make
on_success:
- cmd: 7z a OpenMVS_x64.7z "C:\projects\openmvs\bin\bin\vc15\x64\%Configuration%\*.exe" "C:\projects\openmvs\bin\bin\vc15\x64\%Configuration%\*.dll"
- cmd: appveyor PushArtifact OpenMVS_x64.7z