update vehicle_params: use the absolute path instead of relative from… #214
Workflow file for this run
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: catkin_build | |
on: [push] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
catkin_build: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 8 | |
container: | |
image: ros:noetic | |
steps: | |
- run: apt-get update && apt-get install -y git | |
- run: if [[ "$ROS_DISTRO" = "noetic" ]] ; then apt-get install -y python3-pip ros-noetic-catkin python3-catkin-tools ; fi | |
- uses: actions/checkout@v2 | |
with: | |
path: catkin_ws/src/uav_hitl_dynamics | |
- name: Install requirements | |
run: ./catkin_ws/src/uav_hitl_dynamics/install_requirements.sh | |
- name: Catkin build | |
run: source /opt/ros/noetic/setup.bash && cd catkin_ws && catkin build |