You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use an alias to compile for Flipper Zero instead of build.target
Hard-coding `python3` in the runner means it doesn't work on Windows
because only `python` is provided. Conversely, Debian / Ubuntu don't
provide `python` by default. So it is more reliable to use `cargo`
itself as the runner. However, doing so means we need to be able to
compile for the host inside the `crates/` subdirectory.
It is currently not possible to revert Cargo config options to their
default, so the only way to compile for both host and Flipper Zero is
to set the target additively. We achieve this by defining an alias
`cargo test-flipper` that developers can use instead.
0 commit comments