-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix clippy #62 and test publish and package also
- Loading branch information
1 parent
b63bfce
commit a42c140
Showing
8 changed files
with
65 additions
and
38 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,20 +1,29 @@ | ||
cargo build --all --all-features | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo build --release --all --all-features | ||
cargo build --all --all-features --target x86_64-unknown-linux-gnu | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo build --release --all --all-features --target x86_64-unknown-linux-gnu | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo fmt --all -- --check | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo check --all | ||
cargo check --all --target x86_64-unknown-linux-gnu | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo clippy --all --target x86_64-unknown-linux-gnu | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo clippy --all | ||
cargo test --release --all --all-features --target x86_64-unknown-linux-gnu | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo test --release --all --all-features | ||
cargo publish --dry-run --allow-dirty --target x86_64-unknown-linux-gnu | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo publish --dry-run --allow-dirty | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
cargo aur | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cargo generate-rpm | ||
if %errorlevel% neq 0 exit /b %errorlevel% |
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