-
Notifications
You must be signed in to change notification settings - Fork 25
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
feat: add colcon-build and colcon-test actions #49
Merged
KeisukeShima
merged 54 commits into
autowarefoundation:tier4/proposal
from
KeisukeShima:feature/coverage-flags
Feb 10, 2022
Merged
feat: add colcon-build and colcon-test actions #49
KeisukeShima
merged 54 commits into
autowarefoundation:tier4/proposal
from
KeisukeShima:feature/coverage-flags
Feb 10, 2022
Conversation
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
Signed-off-by: Keisuke Shima <[email protected]>
kenji-miyake
reviewed
Feb 4, 2022
kenji-miyake
reviewed
Feb 4, 2022
KeisukeShima
changed the title
feat(colcon-labeled-test): add colcon-labeled-test workflow
feat(colcon-build, colcon-test): add colcon-build and colcon-test workflow
Feb 4, 2022
I will test the new workflow on my fork repo. |
kenji-miyake
changed the title
feat(colcon-build, colcon-test): add colcon-build and colcon-test workflow
feat: add colcon-build and colcon-test actions
Feb 4, 2022
kenji-miyake
reviewed
Feb 4, 2022
kenji-miyake
reviewed
Feb 4, 2022
kenji-miyake
reviewed
Feb 4, 2022
kenji-miyake
reviewed
Feb 6, 2022
KeisukeShima
commented
Feb 7, 2022
KeisukeShima
commented
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
KeisukeShima
commented
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
reviewed
Feb 7, 2022
kenji-miyake
previously approved these changes
Feb 7, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Signed-off-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
* style: fix yamllint Signed-off-by: Kenji Miyake <[email protected]> * fix(generate-changelog): remove CHANGELOG.md Signed-off-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
* chore: update cliff.toml Signed-off-by: Kenji Miyake <[email protected]> * ci: add GitHub release workflow Signed-off-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]> Co-authored-by: Kenji Miyake <[email protected]> Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
Signed-off-by: Keisuke Shima <[email protected]>
KeisukeShima
force-pushed
the
feature/coverage-flags
branch
from
February 7, 2022 10:59
7a2f0ad
to
fdb25cf
Compare
Signed-off-by: Keisuke Shima <[email protected]>
…ware-github-actions into feature/coverage-flags
kenji-miyake
approved these changes
Feb 10, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Related autowarefoundation/autoware-documentation#2 (comment)
I added
colcon-labeled-test
workflow to runcolcon test
for each test label and generate code coverage results.We can use build cache from
colcon-build-and-test
workflow, which means that we only need to run the build once.Also, the output variable named
coverage-reports
contains the path to the coverage report, we can be used as input forcodecov/codecov-action
.Signed-off-by: Keisuke Shima [email protected]