-
-
Notifications
You must be signed in to change notification settings - Fork 53
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 #154 from brotskydotcom/issue-153
Rework default feature set.
- Loading branch information
Showing
5 changed files
with
110 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
#!/bin/bash | ||
echo Rustup and Cargo updates... | ||
rustup update | ||
cargo update | ||
cargo clippy --target x86_64-unknown-linux-musl | ||
cargo clippy --target x86_64-pc-windows-gnu | ||
echo Clippy no default features... | ||
cargo clippy --no-default-features --target aarch64-unknown-linux-musl | ||
cargo clippy --no-default-features --target aarch64-pc-windows-msvc | ||
cargo clippy --no-default-features --target aarch64-apple-darwin | ||
cargo clippy --no-default-features --target aarch64-apple-ios | ||
echo Clippy default features... | ||
cargo clippy --target aarch64-unknown-linux-musl | ||
cargo clippy --target aarch64-pc-windows-msvc | ||
cargo clippy --target aarch64-apple-darwin | ||
cargo clippy --target aarch64-apple-ios | ||
cargo build --target x86_64-unknown-linux-musl | ||
cargo build --target x86_64-pc-windows-gnu | ||
echo Compile no default features... | ||
cargo build --no-default-features --target aarch64-unknown-linux-musl | ||
cargo build --no-default-features --target aarch64-pc-windows-msvc | ||
cargo build --no-default-features --target aarch64-apple-darwin | ||
cargo build --no-default-features --target aarch64-apple-ios | ||
echo Compile default features... | ||
cargo build --target aarch64-unknown-linux-musl | ||
cargo build --target aarch64-pc-windows-msvc | ||
cargo build --target aarch64-apple-darwin | ||
cargo build --target aarch64-apple-ios |
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,5 @@ | ||
#!/bin/bash | ||
cargo doc --no-deps --target x86_64-unknown-linux-musl $OPEN_DOCS | ||
cargo doc --no-deps --target x86_64-pc-windows-gnu $OPEN_DOCS | ||
cargo doc --no-deps --target aarch64-unknown-linux-musl $OPEN_DOCS | ||
cargo doc --no-deps --target aarch64-pc-windows-msvc $OPEN_DOCS | ||
cargo doc --no-deps --target aarch64-apple-darwin $OPEN_DOCS | ||
cargo doc --no-deps --target aarch64-apple-ios $OPEN_DOCS |
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