-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Remove non-header files from include folder (#716) The `include` directory previously contained all files copied over, but only `*.h` and `*.hpp` files are required. This commit removes all files that do not have a `.h` or `.hpp` extension, as well as any empty directories that may result from this cleanup. Signed-off-by: Meet Gandhi <[email protected]> Co-authored-by: Meet Gandhi <[email protected]> (cherry picked from commit 096ded0) * Fix CI Signed-off-by: Pablo Garrido <[email protected]> * Fix naming * Ensure naming * New line fix --------- Signed-off-by: Pablo Garrido <[email protected]> Co-authored-by: Meet Gandhi <[email protected]> Co-authored-by: Pablo Garrido <[email protected]>
- Loading branch information
1 parent
fdccd24
commit 1fa614c
Showing
2 changed files
with
26 additions
and
3 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 |
---|---|---|
|
@@ -44,9 +44,16 @@ jobs: | |
run: | | ||
(test -f install/micro_ros_setup/lib/micro_ros_setup/build_firmware.sh) && true || false | ||
- name: Sanitize Artifact Name | ||
id: sanitize-name | ||
run: | | ||
sanitized_name=$(echo "${{ inputs.ci_target_ref }}" | sed 's/[\/:*?"<>|\\]/_/g') | ||
echo "sanitized_name=$sanitized_name" >> $GITHUB_ENV | ||
echo "::set-output name=sanitized_name::$sanitized_name" | ||
- uses: actions/[email protected] | ||
with: | ||
name: micro_ros_build_${{ inputs.ci_target_ref }} | ||
name: micro_ros_build_${{ steps.sanitize-name.outputs.sanitized_name }} | ||
path: install | ||
|
||
micro_ros_agent: | ||
|
@@ -75,9 +82,16 @@ jobs: | |
rosdep update --rosdistro ${{ env.ROS_DISTRO }} | ||
rosdep install --rosdistro ${{ env.ROS_DISTRO }} -y --from-paths src --ignore-src -y | ||
- name: Sanitize Artifact Name | ||
id: sanitize-name | ||
run: | | ||
sanitized_name=$(echo "${{ inputs.ci_target_ref }}" | sed 's/[\/:*?"<>|\\]/_/g') | ||
echo "sanitized_name=$sanitized_name" >> $GITHUB_ENV | ||
echo "::set-output name=sanitized_name::$sanitized_name" | ||
- uses: actions/[email protected] | ||
with: | ||
name: micro_ros_build_${{ inputs.ci_target_ref }} | ||
name: micro_ros_build_${{ steps.sanitize-name.outputs.sanitized_name }} | ||
path: install | ||
|
||
# Workaround https://github.com/actions/upload-artifact/issues/38 | ||
|
@@ -218,9 +232,16 @@ jobs: | |
rosdep update --rosdistro ${{ env.ROS_DISTRO }} | ||
rosdep install --rosdistro ${{ env.ROS_DISTRO }} -y --from-paths src --ignore-src -y | ||
- name: Sanitize Artifact Name | ||
id: sanitize-name | ||
run: | | ||
sanitized_name=$(echo "${{ inputs.ci_target_ref }}" | sed 's/[\/:*?"<>|\\]/_/g') | ||
echo "sanitized_name=$sanitized_name" >> $GITHUB_ENV | ||
echo "::set-output name=sanitized_name::$sanitized_name" | ||
- uses: actions/[email protected] | ||
with: | ||
name: micro_ros_build_${{ inputs.ci_target_ref }} | ||
name: micro_ros_build_${{ steps.sanitize-name.outputs.sanitized_name }} | ||
path: install | ||
|
||
# Workaround https://github.com/actions/upload-artifact/issues/38 | ||
|
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