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
By default cargo build will build all workspace members including binaries and libraries, but this action requires adding the --bin flag which only builds binaries, can the bin option be made optional and default to normal cargo build without it?
EDIT: The include option is also a bit useless if it fails the action if it cant find a file, there may be platform dependent files such as libexample.so and example.dll but all builds fail when one of them doesn't match on one target matrix.
The text was updated successfully, but these errors were encountered:
If you remove the double quotes around in the cp -r command it would allow wildcards such as *example.*, very easy way to get some versatility out of bash and would fix the second problem with include
By default
cargo build
will build all workspace members including binaries and libraries, but this action requires adding the--bin
flag which only builds binaries, can thebin
option be made optional and default to normalcargo build
without it?EDIT: The
include
option is also a bit useless if it fails the action if it cant find a file, there may be platform dependent files such aslibexample.so
andexample.dll
but all builds fail when one of them doesn't match on one target matrix.The text was updated successfully, but these errors were encountered: