forked from openMVG/openMVG
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[continuous integration] Setup an Appveyor CI. openMVG#466
- Initial draft
- Loading branch information
Showing
6 changed files
with
48 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
version: 1.0.{build} | ||
|
||
# branches to build | ||
branches: | ||
# white list | ||
only: | ||
- develop_appveyor | ||
- develop | ||
|
||
clone_folder: c:\dev\openMVG | ||
|
||
install: | ||
- git submodule update --init --recursive | ||
|
||
environment: | ||
matrix: | ||
- GENERATOR: "Visual Studio 14 2015 Win64" | ||
- GENERATOR: "Visual Studio 14 2015" | ||
|
||
build_script: | ||
- cd c:\dev\openMVG | ||
- md openMVG_build | ||
- cd openMVG_build | ||
# Configure: | ||
# - ceres - SCHUR_SPECIALIZATIONS set to OFF to speed up build time | ||
- cmake -G"%GENERATOR%" -DOpenMVG_BUILD_EXAMPLES=OFF -DOpenMVG_BUILD_TESTS=ON -DSCHUR_SPECIALIZATIONS=OFF ../src/ | ||
# Build: | ||
# - only some targets since there is no time to compile all | ||
# - in debug mode, since the build is faster and VisualStudio reporting is better | ||
- cmake --build . --config Debug --target openMVG_test_sequential_SfM | ||
- cmake --build . --config Debug --target openMVG_test_global_SfM | ||
- cmake --build . --config Debug --target openMVG_main_IncrementalSfM | ||
- cmake --build . --config Debug --target openMVG_main_GlobalSfM | ||
|
||
build: | ||
parallel: true | ||
verbosity: minimal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters