Skip to content

Commit

Permalink
Use standard ros containers
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaeyoung-Lim committed Apr 6, 2021
1 parent 6f223c8 commit b18091e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,29 @@ jobs:
fail-fast: false
matrix:
config:
- {rosdistro: 'melodic', container: 'px4io/px4-dev-ros-melodic:2020-08-14'}
- {rosdistro: 'noetic', container: 'px4io/px4-dev-ros-noetic:2020-08-20'}
- {rosdistro: 'melodic', container: 'ros:melodic-ros-base-bionic'}
- {rosdistro: 'noetic', container: 'ros:noetic-ros-base-focal'}
container: ${{ matrix.config.container }}
steps:
- uses: actions/checkout@v1
with:
token: ${{ secrets.ACCESS_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install catkin-tools on melodic
if: ${{ matrix.config.container == 'ros:melodic-ros-base-bionic' }}
run: |
apt update && apt install -y python3-wstool python-catkin-tools
- name: Install catkin-tools on Noetic
if: ${{ matrix.config.container == 'ros:noetic-ros-base-focal' }}
run: |
apt update && apt install -y python3-pip
pip3 install osrf-pycommon
apt update && apt install -y python3-wstool python3-catkin-tools
- name: release_build_test
working-directory:
run: |
apt update
apt install -y python3-wstool
# apt update && apt install -y python3-wstool python3-catkin-tools
mkdir -p $HOME/catkin_ws/src;
cd $HOME/catkin_ws
catkin init
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# VersaVIS -- An Open Versatile Multi-Camera Visual-Inertial Sensor Suite
[![Build Test](https://github.com/ethz-asl/versavis/actions/workflows/build_test.yml/badge.svg)](https://github.com/ethz-asl/versavis/actions/workflows/build_test.yml)

VersaVIS provides a complete, open-source hardware, firmware and software bundle to perform time synchronization of multiple cameras with an IMU featuring exposure compensation, host clock translation and independent and stereo camera triggering.


Expand Down

0 comments on commit b18091e

Please sign in to comment.