-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Avoid logging on build time based on RCutils flags (#6) * Add RCL_YAML_PARSER and RCL_LOGGING CMake options. * Replace RCL_YAML_PARSER by RCL_COMMAND_LINE_ENABLED and RCL_LOGGING by RCL_LOGGING_ENABLED. * Disabled logging fix * Fix remapping (#7) Co-authored-by: Pablo Garrido <pablogs9@gmail.com> Co-authored-by: julibert <julianbermudez@eprosima.com> Updates 17092020 *Release micro-ROS Foxy (#9) Cleaning Update Update Update Add workflow checker Update Update update Test Test Update Update Update New approach Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Update Disable logger name (#11) (#13) (cherry picked from commit 1fac9bf) Co-authored-by: Pablo Garrido <pablogs9@gmail.com> Avoid uint64_t operation when handling context (#16) (#18) * Update Signed-off-by: Pablo Garrido <pablogs9@gmail.com> Update Signed-off-by: Pablo Garrido <pablogs9@gmail.com> Update Signed-off-by: Pablo Garrido <pablogs9@gmail.com> Update Signed-off-by: Pablo Garrido <pablogs9@gmail.com> * Update Signed-off-by: Pablo Garrido <pablogs9@gmail.com> * Clean PR * Clean id rollover check * Fix rollover Co-authored-by: acuadros95 <acuadros1995@gmail.com> (cherry picked from commit 32aa288) Co-authored-by: Pablo Garrido <pablogs9@gmail.com> Update fork checker for Humble Signed-off-by: Pablo Garrido <pablogs9@gmail.com> Update micro-ROS conditional compilation
- Loading branch information
Showing
15 changed files
with
198 additions
and
59 deletions.
There are no files selected for viewing
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,36 @@ | ||
name: micro-ROS fork Update Checker | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
name: | ||
description: "Manual trigger" | ||
schedule: | ||
- cron: '0 4 * * *' | ||
|
||
jobs: | ||
micro_ros_fork_update_check: | ||
runs-on: ubuntu-latest | ||
container: ubuntu:20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branches: [foxy, galactic, humble, rolling] | ||
steps: | ||
- name: Check | ||
id: check | ||
shell: bash | ||
run: | | ||
apt update; apt install -y git | ||
REPO=$(echo ${{ github.repository }} | awk '{split($0,a,"/"); print a[2]}') | ||
git clone -b ${{ matrix.branches }} https://github.com/micro-ros/$REPO | ||
cd $REPO | ||
git remote add ros2 https://github.com/ros2/$REPO | ||
git fetch ros2 | ||
git fetch origin | ||
echo "::set-output name=merge_required::true" | ||
CMP=$(git rev-list --left-right --count ros2/${{ matrix.branches }}...origin/${{ matrix.branches }} | awk '{print $1}') | ||
if [ $CMP = "0" ]; then echo "::set-output name=merge_required::false"; fi | ||
- name: Alert | ||
if: ${{ steps.check.outputs.merge_required == 'true' }} | ||
run: exit 1 |
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
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.