velodyne_configuration: Add example node. Add more information to the… #71
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
name: Basic Build Workflow | |
on: | |
- pull_request | |
- push | |
jobs: | |
build-noetic: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
container: | |
image: ros:noetic-perception | |
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/ | |
cd src | |
bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ | |
catkin_init_workspace' | |
- 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; \ | |
catkin_make' | |
- name: Run Tests | |
run: | | |
bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ | |
catkin_make run_tests; \ | |
catkin_test_results --verbose' |