-
Notifications
You must be signed in to change notification settings - Fork 38
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
Build and test wasm on MacOS in CI #24
Conversation
8e9f7f7
to
05e62c4
Compare
329f057
to
e25fd0d
Compare
The default clang installation provided in MacOS does not work. We fixed this locally by installing clang via llvm through brew and setting the CC and AR env variables to point at the new clang installation.The CI MacOS image seems to already have llvm installed so we did not need to install llvm on the CI. See rust-bitcoin/rust-secp256k1#254 for more details
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good from my side! Thanks for sticking with this @rishflab :)
@jonasnick / @sanket1729 Do you mind having a look at this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know anything about WASM, but this PR is fine from my POV since the other tests aren't affected. Why do we remove the build_wasm
task?
The |
Sorry, missed your answer. Ok. |
Thank you for the PR. |
The default clang installation provided in MacOS does not work. We fixed
this locally by installing clang via llvm through brew and setting the
CC and AR env variables to point at the new clang installation.The CI
MacOS image seems to already have llvm installed so we did not need to
install llvm on the CI.
See rust-bitcoin/rust-secp256k1#254 for more
details