-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'melodic' into image_proc_fisheye
- Loading branch information
Showing
36 changed files
with
860 additions
and
490 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Basic Build Workflow | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
build-melodic: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
container: | ||
image: ros:melodic-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' |
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
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
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
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
Oops, something went wrong.