aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/rust.yaml
AgeCommit message (Collapse)Author
2024-10-18Bump actions/checkout to v4Ian McIntyre
2024-10-18Remove deprecated actions-rs from CIIan McIntyre
Follows the same approach taken in imxrt-hal, imxrt-ral, etc.
2023-09-29Test with GNU ld in CIIan McIntyre
Ensure that we can use GCC's linker to generate our Rust firmware. This is useful for exploring mixed-language firmware builds.
2022-12-01Explicitly match family variants in host implIan McIntyre
Might help the next person who wants to add a new family. There's a way to defeat this lint when the enum is (Partial)Eq: use if / else to emulate a fallthrough. I can't find _another_ lint that would prevent that pattern, so I'll try to be vigilent here.
2022-12-01First commitIan McIntyre