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

Iox #743 Backport: Fix website generation and typos for v1.x release #756

Conversation

mossmaurice
Copy link
Contributor

@mossmaurice mossmaurice commented Apr 28, 2021

Pre-Review Checklist for the PR Author

  1. Code follows the coding style of CONTRIBUTING.md
  2. Tests follow the best practice for testing
  3. Branch follows the naming format (iox-#123-this-is-a-branch)
  4. Commits messages are according to this guideline
    • Commit messages have the issue ID (iox-#123 commit text)
    • Commit messages are signed (git commit -s)
    • Commit author matches Eclipse Contributor Agreement (and ECA is signed)
  5. Update the PR title
    • Follow the same conventions as for commit messages
    • Link to the relevant issue
  6. Relevant issues are linked
  7. Add sensible notes for the reviewer
  8. All checks have passed (except task-list-completed)
  9. Assign PR to reviewer

Notes for Reviewer

Checklist for the PR Reviewer

  • Commits are properly organized and messages are according to the guideline
  • Code according to our coding style and naming conventions
  • Unit tests have been written for new behavior
  • Public API changes are documented via doxygen
  • Copyright owner are updated in the changed files
  • PR title describes the changes

Post-review Checklist for the PR Author

  1. All open points are addressed and tracked via issues

References

…n links, update mike, add sanity check for path and fix broken link in utils readme

Signed-off-by: Simon Hoinkis <[email protected]>
@mossmaurice mossmaurice added the documentation Improvements or additions to documentation label Apr 28, 2021
@mossmaurice mossmaurice requested review from dkroenke and budrus April 28, 2021 10:11
@mossmaurice mossmaurice self-assigned this Apr 28, 2021
@codecov
Copy link

codecov bot commented Apr 28, 2021

Codecov Report

Merging #756 (b0a0338) into release_1.0 (4ba77c5) will increase coverage by 0.10%.
The diff coverage is 66.56%.

Impacted file tree graph

@@               Coverage Diff               @@
##           release_1.0     #756      +/-   ##
===============================================
+ Coverage        73.87%   73.97%   +0.10%     
===============================================
  Files              318      319       +1     
  Lines            11077    11425     +348     
  Branches          1950     1972      +22     
===============================================
+ Hits              8183     8452     +269     
- Misses            2130     2196      +66     
- Partials           764      777      +13     
Flag Coverage Δ
unittests 72.77% <64.64%> (+0.05%) ⬆️
unittests_timing 30.50% <15.84%> (-1.18%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...ude/iceoryx_binding_c/internal/cpp2c_publisher.hpp 100.00% <ø> (ø)
...de/iceoryx_binding_c/internal/cpp2c_subscriber.hpp 100.00% <ø> (ø)
iceoryx_binding_c/source/c_runtime.cpp 52.94% <0.00%> (-7.06%) ⬇️
...ceoryx_dds/include/iceoryx_dds/dds/data_writer.hpp 0.00% <ø> (ø)
...nclude/iceoryx_dds/internal/gateway/dds_to_iox.inl 44.18% <0.00%> (-7.17%) ⬇️
...nclude/iceoryx_dds/internal/gateway/iox_to_dds.inl 55.73% <0.00%> (-7.23%) ⬇️
...dds/source/iceoryx_dds/dds/cyclone_data_writer.cpp 0.00% <0.00%> (ø)
...ude/iceoryx_posh/internal/mepoo/memory_manager.hpp 100.00% <ø> (ø)
...clude/iceoryx_posh/internal/mepoo/shared_chunk.hpp 100.00% <ø> (ø)
...nternal/popo/building_blocks/chunk_distributor.hpp 100.00% <ø> (ø)
... and 144 more

@mossmaurice mossmaurice changed the title Iox #743 [DO NOT MERGE YET] Fix website generation and typos for v1.x release Iox #743 [DO NOT MERGE YET] Backport: Fix website generation and typos for v1.x release Apr 29, 2021
@elBoberido
Copy link
Member

Why not merge right away? Are you waiting for possible more fixes?

@mossmaurice
Copy link
Contributor Author

Why not merge right away? Are you waiting for possible more fixes?

AFAIK the ROS CI automatically checks and requires that the v1.0.0 tag points to the latest commit on the release_1.0 branch.

@dkroenke Correct or can we merge backports to release_1.0?

@dkroenke
Copy link
Member

dkroenke commented May 3, 2021

Why not merge right away? Are you waiting for possible more fixes?

AFAIK the ROS CI automatically checks and requires that the v1.0.0 tag points to the latest commit on the release_1.0 branch.

@dkroenke Correct or can we merge backports to release_1.0?

If we do intermediate merges, the ROS buildfarm will notice that and ROS will request a new release from us because they cannot oversee if the merge may breaks the API/ABI, therefore i recommend to do coordinated merges to ensure that a new iceoryx release on ROS is build afterwards.

@elBoberido
Copy link
Member

@dkroenke there must be a different solution for this. We cannot pile up the PRs for the release branch and merge all at once. This is a horrible workflow and counteracts the purpose of a release branch where fixes are back-ported and releases are done on demand

@mossmaurice mossmaurice changed the title Iox #743 [DO NOT MERGE YET] Backport: Fix website generation and typos for v1.x release Iox #743 Backport: Fix website generation and typos for v1.x release May 25, 2021
elBoberido
elBoberido previously approved these changes May 25, 2021
@@ -1,4 +1,4 @@
---
title: Safe building blocks
---
{! ./../iceoryx_utils/README.md !}
{! ../iceoryx/iceoryx_utils/README.md !}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's say I do not believe you that the path is now correct. How can I verify the correctness of those relative paths as a reviewer?
Why is it relative at all? Couldn't we use absolute paths here?

Copy link
Contributor Author

@mossmaurice mossmaurice May 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See answer in the original pull request. The sanity check should be sufficient? I'm afraid absolute paths are not possible IIRC.

Signed-off-by: Simon Hoinkis <[email protected]>
@mossmaurice mossmaurice merged commit a4fc378 into eclipse-iceoryx:release_1.0 May 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants