-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into exception
- Loading branch information
Showing
9 changed files
with
105 additions
and
28 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,69 @@ | ||
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 | ||
strategy: | ||
matrix: | ||
container: ["alicevision/popsift-deps:cuda10.2-ubuntu18.04", "alicevision/popsift-deps:cuda11.8.0-ubuntu20.04", "alicevision/popsift-deps:cuda12.1.0-ubuntu22.04"] | ||
build_tpe: ["Release", "Debug"] | ||
exclude: | ||
# excludes debug on this one as it has a segmentation fault during the compilation (!) | ||
- container: "alicevision/popsift-deps:cuda12.1.0-ubuntu22.04" | ||
build_tpe: "Debug" | ||
|
||
container: | ||
image: ${{ matrix.container }} | ||
|
||
env: | ||
DEPS_INSTALL_DIR: /opt/ | ||
BUILD_TYPE: ${{ matrix.build_tpe }} | ||
CTEST_OUTPUT_ON_FAILURE: 1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Prepare File Tree | ||
run: | | ||
mkdir ./build | ||
mkdir ./build_as_3rdparty | ||
mkdir ../popsift_install | ||
- name: Configure CMake | ||
working-directory: ./build | ||
run: | | ||
cmake .. \ | ||
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ | ||
-DBUILD_SHARED_LIBS:BOOL=ON \ | ||
-DCMAKE_PREFIX_PATH="${DEPS_INSTALL_DIR}" \ | ||
-DPopSift_BUILD_DOCS:BOOL=OFF \ | ||
-DCMAKE_INSTALL_PREFIX:PATH=$PWD/../../popsift_install | ||
- name: Build | ||
working-directory: ./build | ||
run: | | ||
make -j$(nproc) install | ||
- name: Build As Third Party | ||
working-directory: ./build_as_3rdparty | ||
run: | | ||
cmake ../src/application \ | ||
-DBUILD_SHARED_LIBS:BOOL=ON \ | ||
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ | ||
-DCMAKE_PREFIX_PATH:PATH="$PWD/../../popsift_install;${DEPS_INSTALL_DIR}" | ||
make -j$(nproc) |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ LABEL maintainer="AliceVision Team [email protected]" | |
# see https://hub.docker.com/r/nvidia/cuda/ | ||
# | ||
# For example, to create a ubuntu 16.04 with cuda 8.0 for development, use | ||
# docker build --build-arg CUDA_TAG=8.0 --tag alicevision/popsift-deps:cuda${CUDA_TAG}-ubuntu${OS_TAG} . | ||
# docker build --build-arg CUDA_TAG=8.0 --tag alicevision/popsift-deps:cuda${CUDA_TAG}-ubuntu${OS_TAG} -f Dockerfile_deps . | ||
# | ||
# then execute with nvidia docker (https://github.com/nvidia/nvidia-docker/wiki/Installation-(version-2.0)) | ||
# docker run -it --runtime=nvidia popsift_deps | ||
|
@@ -32,12 +32,12 @@ RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommend | |
libboost-thread-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Manually install cmake | ||
# Manually install cmake | ||
WORKDIR /tmp/cmake | ||
ENV CMAKE_VERSION=3.17 | ||
ENV CMAKE_VERSION=3.24 | ||
ENV CMAKE_VERSION_FULL=${CMAKE_VERSION}.2 | ||
RUN wget https://cmake.org/files/v3.17/cmake-${CMAKE_VERSION_FULL}.tar.gz && \ | ||
tar zxvf cmake-${CMAKE_VERSION_FULL}.tar.gz && \ | ||
RUN wget https://cmake.org/files/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION_FULL}.tar.gz && \ | ||
tar zxf cmake-${CMAKE_VERSION_FULL}.tar.gz && \ | ||
cd cmake-${CMAKE_VERSION_FULL} && \ | ||
./bootstrap --prefix=/usr/local -- -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_USE_OPENSSL:BOOL=ON && \ | ||
make -j$(nproc) install && \ | ||
|
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
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