ci: update for yocto whinlatter release and update actions#103
Merged
hnez merged 10 commits intolinux-automation:mainfrom Feb 20, 2026
Merged
ci: update for yocto whinlatter release and update actions#103hnez merged 10 commits intolinux-automation:mainfrom
hnez merged 10 commits intolinux-automation:mainfrom
Conversation
Emantor
approved these changes
Dec 6, 2025
Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
This is, as of now, the newest nodejs version that comes pre-cached on the GitHub ubuntu-latest images. Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
We have moved on to whinlatter now. Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
We have moved on to whinlatter now. Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
This is inspired by a recently added clippy lint:
error: manual implementation of `.is_multiple_of()`
--> src/dut_power.rs:248:16
|
248 | if N % 2 == 0 {
| ^^^^^^^^^^ help: replace with: `N.is_multiple_of(2)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_multiple_of
= note: `-D clippy::manual-is-multiple-of` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_is_multiple_of)]`
error: manual implementation of `.is_multiple_of()`
--> src/ui/screens/diagnostics.rs:256:26
|
256 | let on = self.led_cycle_state % 2 != 0;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `!self.led_cycle_state.is_multiple_of(2)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_multiple_of
This change has become possible since we removed support for the rustc in
yocto walnascar, which did not have x.is_multiple_of(N).
Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
d6d471e to
b1c36ff
Compare
Member
Author
|
We have switched to whinlatter for meta-lxatac now. I have included the change from #101 here, so this closes #101. It looks like I need a new approval. Maybe @SmithChart can help out? |
…ustc Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
b1c36ff to
7f71c43
Compare
This change was suggested by `cargo deny` and fixes an integer overflow in the bytes crate[1]. [1]: https://rustsec.org/advisories/RUSTSEC-2026-0007 Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
Cargo deny calls have started notifying us about this advisory not being relevant to us anymore, so we can stop ignoring it. Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
SmithChart
approved these changes
Feb 20, 2026
Member
SmithChart
left a comment
There was a problem hiding this comment.
Thanks for all the upgrades! Looks good to me.
(The .is_multiple_of(2)-syntax really does look better!)
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
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.
Just so we do not fall behind.