-
-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #782 from alicevision/github-actions-ci
[ci] Add github actions CI
- Loading branch information
Showing
1 changed file
with
91 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
# Skip jobs when only documentation files are changed | ||
paths-ignore: | ||
- '**.md' | ||
- '**.rst' | ||
- 'docs/**' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
- '**.rst' | ||
- 'docs/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: alicevision/alicevision-deps:ci-2020.05.08-centos7-cuda9.0 | ||
env: | ||
DEPS_INSTALL_DIR: /opt/AliceVision_install | ||
BUILD_TYPE: Release | ||
CTEST_OUTPUT_ON_FAILURE: 1 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Prepare File Tree | ||
run: | | ||
mkdir ./build | ||
mkdir ./build_as_3rdparty | ||
mkdir ./functional_tests | ||
mkdir ../AV_install | ||
git submodule update -i | ||
- name: Configure CMake | ||
working-directory: ./build | ||
run: | | ||
cmake .. \ | ||
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ | ||
-DBUILD_SHARED_LIBS:BOOL=ON \ | ||
-DCMAKE_PREFIX_PATH="${DEPS_INSTALL_DIR}" \ | ||
-DCMAKE_INSTALL_PREFIX:PATH=$PWD/../../AV_install \ | ||
-DTARGET_ARCHITECTURE=core \ | ||
-DALICEVISION_BUILD_TESTS:BOOL=ON \ | ||
-DALICEVISION_BUILD_EXAMPLES:BOOL=ON \ | ||
-DALICEVISION_USE_OPENCV:BOOL=ON \ | ||
-DALICEVISION_USE_CUDA:BOOL=ON \ | ||
-DALICEVISION_USE_CCTAG:BOOL=ON \ | ||
-DALICEVISION_USE_POPSIFT:BOOL=ON \ | ||
-DALICEVISION_USE_ALEMBIC:BOOL=ON \ | ||
-DOpenCV_DIR:PATH="${DEPS_INSTALL_DIR}/share/OpenCV" \ | ||
-DALICEVISION_USE_OPENGV:BOOL=ON \ | ||
-DOPENGV_DIR:PATH="${DEPS_INSTALL_DIR}" \ | ||
-DBOOST_NO_CXX11:BOOL=ON \ | ||
-DCeres_DIR:PATH="${DEPS_INSTALL_DIR}/share/Ceres" \ | ||
-DEIGEN_INCLUDE_DIR_HINTS:PATH="${DEPS_INSTALL_DIR}" \ | ||
-DAlembic_DIR:PATH="${DEPS_INSTALL_DIR}/lib/cmake/Alembic" | ||
- name: Build | ||
working-directory: ./build | ||
run: | | ||
make -j8 install | ||
- name: Unit Tests | ||
working-directory: ./build | ||
run: | | ||
make test | ||
- name: Build As Third Party | ||
working-directory: ./build_as_3rdparty | ||
run: | | ||
cmake ../src/samples/aliceVisionAs3rdParty \ | ||
-DBUILD_SHARED_LIBS:BOOL=ON \ | ||
-DCMAKE_PREFIX_PATH:PATH="$PWD/../../AV_install;${DEPS_INSTALL_DIR}" | ||
make -j8 | ||
- name: Functional Tests | ||
working-directory: ./functional_tests | ||
run: | | ||
git clone --branch master https://github.com/alicevision/SfM_quality_evaluation.git | ||
cd SfM_quality_evaluation/ | ||
# checkout a specific commit to ensure repeatability | ||
git checkout 203e55c6e70de5f79496407961eb10b15deece4b | ||
export LD_LIBRARY_PATH=$PWD/../../../AV_install/lib64:${DEPS_INSTALL_DIR}/lib64:${DEPS_INSTALL_DIR}/lib:${LD_LIBRARY_PATH} | ||
echo "ldd aliceVision_cameraInit" | ||
ldd $PWD/../../../AV_install/bin/aliceVision_cameraInit | ||
python EvaluationLauncher.py -s $PWD/../../../AV_install/bin -i $PWD/Benchmarking_Camera_Calibration_2008/ -o $PWD/reconstructions/ -r $PWD/results.json -v |