-
Notifications
You must be signed in to change notification settings - Fork 722
Enable Rolling and Galactic CI #494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
henningkayser
merged 6 commits into
moveit:main
from
vatanaksoytezer:pr-rolling_galactic
Jun 15, 2021
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f3ab0c3
Test future versions of ROS2
tylerjw e783ecc
Rolling compatibility
tylerjw 85e43b6
Cleanup rolling, add galactic CI, and fixups
4a532b3
Apply suggestions from code review
645bea1
Add galactic badge
75dff2a
Merge remote-tracking branch 'origin/pr-rolling_galactic' into pr-rol…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,74 @@ | ||
| # This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git). | ||
| # For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst) | ||
|
|
||
| name: Build and Test (galactic) | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| industrial_ci: | ||
| strategy: | ||
| matrix: | ||
| env: | ||
| - ROS_DISTRO: galactic | ||
| ROS_REPO: main | ||
| - ROS_DISTRO: galactic | ||
| ROS_REPO: testing | ||
| env: | ||
| UPSTREAM_WORKSPACE: moveit2_galactic.repos | ||
| AFTER_SETUP_UPSTREAM_WORKSPACE: vcs pull $BASEDIR/upstream_ws/src | ||
| TARGET_CMAKE_ARGS: -DCMAKE_BUILD_TYPE=Release | ||
| CCACHE_DIR: ${{ github.workspace }}/.ccache | ||
| BASEDIR: ${{ github.workspace }}/.work | ||
| CACHE_PREFIX: ${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} | ||
| CLANG_TIDY_BASE_REF: ${{ github.base_ref || github.ref }} | ||
|
|
||
| name: ${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: cache upstream_ws | ||
| uses: pat-s/always-upload-cache@v2.1.3 | ||
| with: | ||
| path: ${{ env.BASEDIR }}/upstream_ws | ||
| key: upstream_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('moveit2_galactic.repos') }}-${{ github.run_id }} | ||
| restore-keys: | | ||
| upstream_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('moveit2_galactic.repos') }} | ||
| # The target directory cache doesn't include the source directory because | ||
| # that comes from the checkout. See "prepare target_ws for cache" task below | ||
| - name: cache target_ws | ||
| uses: pat-s/always-upload-cache@v2.1.3 | ||
| with: | ||
| path: ${{ env.BASEDIR }}/target_ws | ||
| key: target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }}-${{ github.run_id }} | ||
| restore-keys: | | ||
| target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }} | ||
| - name: cache ccache | ||
| uses: pat-s/always-upload-cache@v2.1.3 | ||
| with: | ||
| path: ${{ env.CCACHE_DIR }} | ||
| key: ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }} | ||
| restore-keys: | | ||
| ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }} | ||
| ccache-${{ env.CACHE_PREFIX }} | ||
| - name: industrial_ci | ||
| uses: 'ros-industrial/industrial_ci@master' | ||
| env: ${{ matrix.env }} | ||
| - name: upload test artifacts (on failure) | ||
| uses: actions/upload-artifact@v2 | ||
| if: failure() | ||
| with: | ||
| name: test-results | ||
| path: ${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml | ||
| - name: prepare target_ws for cache | ||
| if: always() | ||
| run: | | ||
| du -sh ${{ env.BASEDIR }}/target_ws | ||
| sudo find ${{ env.BASEDIR }}/target_ws -wholename '*/test_results/*' -delete | ||
| sudo rm -rf ${{ env.BASEDIR }}/target_ws/src | ||
| du -sh ${{ env.BASEDIR }}/target_ws | ||
This file contains hidden or 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,74 @@ | ||
| # This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git). | ||
| # For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst) | ||
|
|
||
| name: Build and Test (rolling) | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| industrial_ci: | ||
| strategy: | ||
| matrix: | ||
| env: | ||
| - ROS_DISTRO: rolling | ||
| ROS_REPO: main | ||
| - ROS_DISTRO: rolling | ||
| ROS_REPO: testing | ||
| env: | ||
| UPSTREAM_WORKSPACE: moveit2_rolling.repos | ||
| AFTER_SETUP_UPSTREAM_WORKSPACE: vcs pull $BASEDIR/upstream_ws/src | ||
| TARGET_CMAKE_ARGS: -DCMAKE_BUILD_TYPE=Release | ||
| CCACHE_DIR: ${{ github.workspace }}/.ccache | ||
| BASEDIR: ${{ github.workspace }}/.work | ||
| CACHE_PREFIX: ${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} | ||
| CLANG_TIDY_BASE_REF: ${{ github.base_ref || github.ref }} | ||
|
|
||
| name: ${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: cache upstream_ws | ||
| uses: pat-s/always-upload-cache@v2.1.3 | ||
| with: | ||
| path: ${{ env.BASEDIR }}/upstream_ws | ||
| key: upstream_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('moveit2_rolling.repos') }}-${{ github.run_id }} | ||
| restore-keys: | | ||
| upstream_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('moveit2_rolling.repos') }} | ||
| # The target directory cache doesn't include the source directory because | ||
| # that comes from the checkout. See "prepare target_ws for cache" task below | ||
| - name: cache target_ws | ||
| uses: pat-s/always-upload-cache@v2.1.3 | ||
| with: | ||
| path: ${{ env.BASEDIR }}/target_ws | ||
| key: target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }}-${{ github.run_id }} | ||
| restore-keys: | | ||
| target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }} | ||
| - name: cache ccache | ||
| uses: pat-s/always-upload-cache@v2.1.3 | ||
| with: | ||
| path: ${{ env.CCACHE_DIR }} | ||
| key: ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }} | ||
| restore-keys: | | ||
| ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }} | ||
| ccache-${{ env.CACHE_PREFIX }} | ||
| - name: industrial_ci | ||
| uses: 'ros-industrial/industrial_ci@master' | ||
| env: ${{ matrix.env }} | ||
| - name: upload test artifacts (on failure) | ||
| uses: actions/upload-artifact@v2 | ||
| if: failure() | ||
| with: | ||
| name: test-results | ||
| path: ${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml | ||
| - name: prepare target_ws for cache | ||
| if: always() | ||
| run: | | ||
| du -sh ${{ env.BASEDIR }}/target_ws | ||
| sudo find ${{ env.BASEDIR }}/target_ws -wholename '*/test_results/*' -delete | ||
| sudo rm -rf ${{ env.BASEDIR }}/target_ws/src | ||
| du -sh ${{ env.BASEDIR }}/target_ws |
This file contains hidden or 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 hidden or 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,49 @@ | ||
| repositories: | ||
| control_msgs: | ||
| type: git | ||
| url: https://github.com/ros-controls/control_msgs | ||
| version: galactic-devel | ||
| control_toolbox: | ||
| type: git | ||
| url: https://github.com/ros-controls/control_toolbox | ||
| version: ros2-master | ||
| geometric_shapes: | ||
| type: git | ||
| url: https://github.com/ros-planning/geometric_shapes | ||
| version: ros2 | ||
| moveit_msgs: | ||
| type: git | ||
| url: https://github.com/ros-planning/moveit_msgs | ||
| version: ros2 | ||
| moveit_resources: | ||
| type: git | ||
| url: https://github.com/ros-planning/moveit_resources | ||
| version: ros2 | ||
| object_recognition_msgs: | ||
| type: git | ||
| url: https://github.com/wg-perception/object_recognition_msgs | ||
| version: ros2 | ||
| random_numbers: | ||
| type: git | ||
| url: https://github.com/ros-planning/random_numbers | ||
| version: ros2 | ||
| ros2_control: | ||
| type: git | ||
| url: https://github.com/ros-controls/ros2_control | ||
| version: master | ||
| ros2_controllers: | ||
| type: git | ||
| url: https://github.com/ros-controls/ros2_controllers | ||
| version: master | ||
| srdfdom: | ||
| type: git | ||
| url: https://github.com/ros-planning/srdfdom | ||
| version: ros2 | ||
| warehouse_ros: | ||
| type: git | ||
| url: https://github.com/ros-planning/warehouse_ros | ||
| version: ros2 | ||
| warehouse_ros_mongo: | ||
| type: git | ||
| url: https://github.com/ros-planning/warehouse_ros_mongo | ||
| version: ros2 |
This file contains hidden or 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,41 @@ | ||
| repositories: | ||
| control_msgs: | ||
| type: git | ||
| url: https://github.com/ros-controls/control_msgs | ||
| version: galactic-devel | ||
| control_toolbox: | ||
| type: git | ||
| url: https://github.com/ros-controls/control_toolbox | ||
| version: ros2-master | ||
| geometric_shapes: | ||
| type: git | ||
| url: https://github.com/ros-planning/geometric_shapes | ||
| version: ros2 | ||
| moveit_msgs: | ||
| type: git | ||
| url: https://github.com/ros-planning/moveit_msgs | ||
| version: ros2 | ||
| moveit_resources: | ||
| type: git | ||
| url: https://github.com/ros-planning/moveit_resources | ||
| version: ros2 | ||
| ros2_control: | ||
| type: git | ||
| url: https://github.com/ros-controls/ros2_control | ||
| version: master | ||
| ros2_controllers: | ||
| type: git | ||
| url: https://github.com/ros-controls/ros2_controllers | ||
| version: master | ||
| srdfdom: | ||
| type: git | ||
| url: https://github.com/ros-planning/srdfdom | ||
| version: ros2 | ||
| warehouse_ros: | ||
| type: git | ||
| url: https://github.com/ros-planning/warehouse_ros | ||
| version: ros2 | ||
| warehouse_ros_mongo: | ||
| type: git | ||
| url: https://github.com/ros-planning/warehouse_ros_mongo | ||
| version: ros2 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
2 changes: 2 additions & 0 deletions
2
moveit_ros/planning/trajectory_execution_manager/CMakeLists.txt
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.