Skip to content

Commit

Permalink
Restore ci/test-checks.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed May 4, 2023
1 parent bc65e1f commit a4be9e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions ci/test-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ echo --- build environment
wasm-pack --version
)

exit 0

export RUST_BACKTRACE=1
export RUSTFLAGS="-D warnings -A incomplete_features"

Expand All @@ -77,7 +75,7 @@ fi

_ ci/order-crates-for-publishing.py

nightly_clippy_allows=()
nightly_clippy_allows=(--allow=clippy::redundant_clone --allow clippy::match-result-ok)

# run nightly clippy for `sdk/` as there's a moderate amount of nightly-only code there
_ scripts/cargo-for-all-lock-files.sh -- "+${rust_nightly}" clippy --workspace --all-targets --features dummy-for-ci-check -- \
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12571,7 +12571,7 @@ pub mod tests {
let expected_account_hash = if cfg!(debug_assertions) {
Hash::from_str("6qtBXmRrLdTdAV5bK6bZZJxQA4fPSUBxzQGq2BQSat25").unwrap()
} else {
Hash::from_str("6qtBXmRrLdTdAV5bK6bZZJxQA4fPSUBxzQGq2BQSat25").unwrap()
Hash::from_str("6qtBXmRrLdTdAV5bK6bZZJxQA4fPSUBxzQGq2BQSat25").expect("suppress cippy")
};

assert_eq!(
Expand Down
2 changes: 1 addition & 1 deletion zk-token-sdk/src/zk_token_proof_instruction.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
///! Instructions provided by the ZkToken Proof program
//! Instructions provided by the ZkToken Proof program
pub use crate::instruction::*;
use {
bytemuck::bytes_of,
Expand Down

0 comments on commit a4be9e3

Please sign in to comment.