Skip to content

Fix camera_calibration when selecting fisheye ros2 galactic (#769) #513

Fix camera_calibration when selecting fisheye ros2 galactic (#769)

Fix camera_calibration when selecting fisheye ros2 galactic (#769) #513

name: Basic Build Workflow
on:
- pull_request
- push
jobs:
build-foxy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
container:
image: ros:foxy-ros-base
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Create Workspace
run: |
mkdir src_tmp
mv `find -maxdepth 1 -not -name . -not -name src_tmp` src_tmp/
mv src_tmp/ src/
- name: Install Prerequisites
run: |
bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \
apt-get update && rosdep update; \
rosdep install --from-paths src --ignore-src -y'
- name: Build Workspace
run: |
bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \
colcon build'
- name: Run Tests
run: |
bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \
colcon test; \
colcon test-result --verbose'