2.3 KiB
2.3 KiB
0.0.10 - 2023-12-10
- Fixed handling of crates with multiple binaries. Attempting to strip binaries for such a crate caused the build to fail. Reported by Tomaž Hribernik. GH #8
- Added a new
cross-versionparameter. This can be specified to make this action use a specific version ofcross. If this is not specified, the latest version will be used.
0.0.9 - 2023-09-10
- Added a
working-directoryparameter. By default this is the current directory (.) but you can set it to something else to compile a single crate or workspace in a subdirectory of the repo. This allows you to use this action with monorepos with multiple crates. Based on GH #7 by @aaronvg.
0.0.8 - 2023-07-22
- For builds that need the
crossbinary, this binary is now cached. A cache hit saves about 20 seconds in my tests. Suggested by @timon-schelling. GH #4.
0.0.7 - 2023-04-21
- The toolchain argument was (probably) not being respected with cross builds, though it's hard to
be sure since none of the output from past CI runs I've looked at it includes the toolchain
version in the output. But now the toolchain version is explicitly passed to all
cargoandcrosscommands.
0.0.6 - 2023-04-21
- When the
stripparameter was true, stripping binaries could fail if there were bothtarget/*/debugandtarget/*/releasedirectories present and thedebugdirectory didn't have a binary. Now it will strip all binaries it finds undertarget.
0.0.5 - 2023-03-19
- Fix use of
dtolnay/rust-toolchainaction to allow passing atoolchaininput.
0.0.4 - 2023-03-19
- Added a new
toolchainparameter to allow selecting a Rust toolchain other than stable. This supports picking on of "stable", "beta", or "nightly". - Fixed binary stripping to work in more situations. Previously it depended on a very specific setup plus expected to be run in the context of the matrix I use for my own projects.
- Fixed a reference to a matrix variable that should have referenced an input variable.
0.0.3 - 2023-03-17
- This action now supports running the
buildandtestcommands, or both, with a new input parameter,command. The default isbuild.
0.0.2 - 2023-03-05
- Fixed some typos in the
README.mddocumentation.
0.0.1 - 2023-03-05
- First release upon an unsuspecting world.