Skip to content

Commit

Permalink
fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexytsu committed Aug 23, 2022
1 parent 291158b commit a1e2175
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ test: install-toolchain
# tests excluding actors so we can generate coverage reports during CI build
# WASM targets such as actors do not support this so are excluded
test-coverage: install-toolchain
cargo test --workspace --exclude greeter --exclude fil_integration_tests
cargo test --workspace --exclude greeter --exclude fil_token_integration_tests

# separate actor testing stage to run from CI without coverage support
test-actors: install-toolchain
cargo test --package greeter --package fil_integration_tests
cargo test --package greeter --package fil_token_integration_tests

clean:
cargo clean
Expand Down
6 changes: 5 additions & 1 deletion testing/fil_token_integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@ fil_fungible_token = { version = "0.1.0", path = "../../fil_fungible_token" }
fvm_integration_tests = "0.1.0"
fvm_ipld_blockstore = "0.1.1"
fvm_ipld_encoding = "0.2.2"
fvm_shared = { version = "0.8.0" }
fvm_shared = { version = "0.8.0" }

[dev-dependencies]
basic_token_actor = {path = "actors/basic_token_actor"}
basic_receiving_actor = {path = "actors/basic_receiving_actor"}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }

[build-dependencies]
wasm-builder = "3.0.1"
wasm-builder = "3.0.1"

0 comments on commit a1e2175

Please sign in to comment.