-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(execution-environment): Specify image-classification canister W…
…ASM as a Bazel dependency (#3355) This PR makes image-classification.wasm.gz (currently, a checked-in binary artifact) a Bazel dependency, so multiple tests that require either specifically this canister, or just a very large WASM, can share it. This change required adjusting `//rs/execution_environment:execution_environment_misc_integration_tests/smoke`.
- Loading branch information
Showing
4 changed files
with
19 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
# https://github.com/dfinity/examples/tree/master/rust/image-classification | ||
filegroup( | ||
name = "image-classification", | ||
srcs = ["image-classification.wasm.gz"], | ||
) |
File renamed without changes.