Skip to content

Commit 434bd83

Browse files
committed
fix(rust): skip building the c509 crate as rust
1 parent 0f13a52 commit 434bd83

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

rust/c509-certificate/Earthfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ IMPORT ../.. AS repo
1313
# - Create a publish target which can publish the library to NPM for both Web and NodeJS.
1414
# - Create a simple example web app and nodejs app which uses the library, and can be used to
1515
# test it after publishing.
16-
build-wasm:
16+
skip-build-wasm: # for now skip building wasm.
1717
FROM rust-local+build
1818

1919
COPY repo+repo-docs/repo/LICENSE-APACHE c509-certificate/.
@@ -28,6 +28,7 @@ build-wasm:
2828

2929
# js-wasm-package-locally : Generate the wasm package and save it locally
3030
js-wasm-package-locally:
31-
FROM +build-wasm
31+
FROM +skip-build-wasm
3232

3333
SAVE ARTIFACT /pkg AS LOCAL ./pkg
34+
`

0 commit comments

Comments
 (0)