-
Notifications
You must be signed in to change notification settings - Fork 3
Update opensomeip to v0.1.0 #2
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
Open
vtz
wants to merge
10
commits into
main
Choose a base branch
from
update-opensomeip-v0.1.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
894b5e6
Update opensomeip to v0.1.0
vtz de47c0e
Fix Zephyr CI: run west build from inside the workspace
vtz 370d7ae
Fix Zephyr CI: expand OPENSOMEIP_ROOT to absolute path
vtz bcade6e
Update Zephyr CI: SDK 1.0.1, pin Zephyr v4.4.0
vtz 613334b
Fix Zephyr CI: SOC_ROOT for s32k388, test exit handling
vtz 0538a23
Fix Zephyr CI: extract toolchains into gnu/ subdirectory
vtz f1b6189
Add random generator config for s32k388_renode networking
vtz 03b08da
Fix s32k388_renode: disable XSI_SINGLE_PROCESS to avoid gettimeofday …
vtz c1ae32d
Update Python opensomeip requirement to >=0.1.5
vtz 2ae869d
Add explicit least-privilege permissions to CI workflow
vtz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| opensomeip>=0.1.2 | ||
| opensomeip>=0.1.5 | ||
| pyyaml>=6.0 |
This file contains hidden or 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,2 @@ | ||
| CONFIG_TEST_RANDOM_GENERATOR=y | ||
| CONFIG_XSI_SINGLE_PROCESS=n |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: vtz/opensomeip-examples
Length of output: 391
🏁 Script executed:
Repository: vtz/opensomeip-examples
Length of output: 5572
Pin OpenSOMEIP to an immutable commit SHA in CI (and align Docker/CMake).
.github/workflows/ci.yml(line ~228) uses the mutable tagv0.1.0viaOPENSOMEIP_COMMIT: "v0.1.0"and thengit checkout $OPENSOMEIP_COMMITafter cloning. The same mutable tag is also used indocker/Dockerfile.zephyr(ARG/default) andcpp/CMakeLists.txt(GIT_TAG v0.1.0), so builds aren’t fully reproducible. Resolvev0.1.0toc66051facd4d01c5c8ccf8d70fc5bb7f903c10c9and pin to that SHA everywhere.Suggested patch shape (replace tag with resolved SHA)
📝 Committable suggestion
🤖 Prompt for AI Agents
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.
Disagree — using the annotated tag
v0.1.0is standard practice for FetchContent, Docker, and CI version pins. Tags are immutable in this project, and raw SHAs would make the references opaque and harder to maintain. The tag clearly communicates the intended version.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.
@vtz, understood — if tags are treated as immutable in this project and the readability ofv0.1.0is preferred over an opaque SHA, that's a perfectly reasonable convention to follow. I'll keep that in mind for future reviews.(ᴖ‿ᴖ) (ᵕ﹏ᵕ)
✏️ Learnings added