Skip to content

Commit

Permalink
chore: fix vm test build (#288)
Browse files Browse the repository at this point in the history
And don't check clippy on "all targets". For some reason, this prevents
it from catching issues like this.
  • Loading branch information
Stebalien authored Apr 29, 2022
1 parent b84121c commit a55848d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
command: clippy
args: --all --all-targets
args: --all
components: clippy

test:
Expand Down
4 changes: 1 addition & 3 deletions test_vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["filecoin", "web3", "wasm"]
[lib]

[dependencies]
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../actors/runtime" }
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../actors/runtime", features = [ "test_utils" ] }
fil_actor_init = { version = "8.0.0-alpha.1", path = "../actors/init" }
fil_actor_cron = { version = "8.0.0-alpha.1", path = "../actors/cron" }
fil_actor_system = { version = "8.0.0-alpha.1", path = "../actors/system" }
Expand All @@ -35,7 +35,5 @@ cid = { version = "0.8.3", default-features = false, features = ["serde-codec"]
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
anyhow = "1.0.56"
[dev-dependencies]
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../actors/runtime", features = ["test_utils", "sector-default"] }


0 comments on commit a55848d

Please sign in to comment.