Skip to content

Merge pull request #27 from originlake/two_view_plane_fix #160

Merge pull request #27 from originlake/two_view_plane_fix

Merge pull request #27 from originlake/two_view_plane_fix #160

Workflow file for this run

name: Docker CI
on: [push, pull_request]
jobs:
build-test:
name: Build docker and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build the Docker image
run: docker build . --file Dockerfile --tag mapillary/opensfm:$GITHUB_SHA
- name: Run C++ tests
run: docker run mapillary/opensfm:$GITHUB_SHA /bin/sh -c "cd cmake_build && ctest"
- name: Run Python tests
run: docker run mapillary/opensfm:$GITHUB_SHA python3 -m pytest