-
Notifications
You must be signed in to change notification settings - Fork 849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cargo publish
doesn't work on wasmer-c-api
#1802
Comments
For 2, the only thing we need to do is assuring to build the library first, commit any files and then publish? |
I really don't think we should be modifying the source directory as part of any build action of any kind, ever. Put another way, we should be able to make all of wasmer directories read-only except the The reason we don't do this now is that we want to make sure we can review changes to that file and we don't have any way to review changes to it without putting it in the source directory. Last time this came up I didn't have any suggestions, but I just had an idea:
|
The Doing such thing we don't have to deal with a reference file (and thus, having to care about two files instead of only one today). |
I believe the problem has been solved with #2076. Closing. |
Describe the bug
scripts/publish.py
runscargo publish
on every crate in Wasmer. This fails to publish the wasmer-c-api for two reasons:cargo publish --features=jit,native,object-file
builds though.wasmer_wasm.h
in the source directory.cargo publish --no-verify
can proceed despite that.The text was updated successfully, but these errors were encountered: