-
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.
Merge pull request #103 from michaelwoerister/big-endian-ci
Fix big-endian build and add CI tests for it.
- Loading branch information
Showing
10 changed files
with
26 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
language: rust | ||
before_install: | ||
- rustup target add powerpc64-unknown-linux-gnu | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
fast_finish: true | ||
env: | ||
- CARGO_INCREMENTAL=0 | ||
install: skip | ||
script: | ||
- cargo check --verbose --target powerpc64-unknown-linux-gnu --lib --bins --tests || exit 1 | ||
- cargo build --verbose --all || exit 1 | ||
- cargo test --verbose --all |
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,6 +1,6 @@ | ||
[package] | ||
name = "analyzeme" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "crox" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "flamegraph" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "measureme" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"] | ||
edition = "2018" | ||
description = "Support crate for rustc's self-profiling feature" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "mmview" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "stack_collapse" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "summarize" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|