Skip to content

Commit

Permalink
[ci] added github actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
simogasp committed Mar 24, 2023
1 parent fd21d35 commit d49f2ed
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
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"]

container:
image: ${{ matrix.container }}

env:
DEPS_INSTALL_DIR: /opt/
BUILD_TYPE: Release
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_PREFIX_PATH:PATH="$PWD/../../popsift_install;${DEPS_INSTALL_DIR}"
make -j$(nproc)

0 comments on commit d49f2ed

Please sign in to comment.