Skip to content
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

Fix paths for lcov/codecov #20

Merged
merged 7 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/actions/set-package-list/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: 'Get a list of packages in the given path'
inputs:
path:
description: 'Path to the repository after checkout'
required: true
outputs:
package_list:
description: "A white-space separated list of packages"
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/reusable-build-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ on:
default: 'ubuntu-latest'
type: string

env:
# this will be src/{repo-owner}/{repo-name}
path: src/${{ github.repository }}

jobs:
coverage:
name: coverage build ${{ inputs.ros_distro }}
Expand All @@ -25,12 +21,8 @@ jobs:
with:
required-ros-distributions: ${{ inputs.ros_distro }}
- uses: actions/checkout@v4
with:
path: ${{ env.path }}
- id: package_list_action
uses: ros-controls/ros2_control_ci/.github/actions/set-package-list@master
with:
path: ${{ env.path }}
- uses: ros-tooling/[email protected]
with:
target-ros2-distro: ${{ inputs.ros_distro }}
Expand Down
Loading