-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #220 - michaelwoerister:fix-gh-actions-rust-toolchain, …
…r=wesleywiser Fix compilation error and regression tests for big endian platforms This PR fixes the big endian regression tests. Apparently, the have not actually run `cargo check` with a big endian target for a while. The PR also switches the GH action jobs to use a matrix and replaces the unmaintained action-rs with something more current. It also fixes the big-endian-only compilation error that the now fixed tests are running into. This should unblock rust-lang/rust#119111, once we've done a 11.0.1 release. r? `@wesleywiser`
- Loading branch information
Showing
5 changed files
with
50 additions
and
89 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[package] | ||
name = "flamegraph" | ||
version = "11.0.0" | ||
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"] | ||
authors = [ | ||
"Wesley Wiser <wwiser@gmail.com>", | ||
"Michael Woerister <michaelwoerister@posteo>", | ||
] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
measureme = { path = "../measureme" } | ||
analyzeme = { path = "../analyzeme" } | ||
clap = { version = "3.2", features = ["derive"] } | ||
inferno = { version="0.9.1", default-features = false } | ||
inferno = { version = "0.11", default-features = false } |
This file contains 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