-
Notifications
You must be signed in to change notification settings - Fork 75
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
How to fail completely via flags if the remote isn't available #40
Comments
No, this is currently not possible. The standalone check was implemented as a little help for the module developers, so they don't have to specify @ralphtheninja I see two options here:
I am tending to 1 because |
I was a bit confused by this. If I understand correctly, you want How about adding @mathiask88 What do you mean with "the standalone path"? |
@ralphtheninja I meant this behavior. |
I think the Unless I'd prefer to keep this in the install processes so I can verify that not only it downloaded but the download works. eg
Funny enough this works on linux,
but I don't know how to pass it through |
Oh, ok I misread. I thought you want to download the binary in your dev environment, ignore my last answer then :) |
This is my current understanding as well :) |
@reconbot Is this still a thing? |
Yeah, unless there's been new features I don't know about. This allows me to test our build pipeline and ensure we have binaries published and useable without having to build something to test prebuild-install. |
I'd like to test if the download works. With
node-pre-gyp
I was able to install the package like so and ensure it downloaded and not built.I use this in CI to ensure the state of all the builds before publishing the npm package. It's also been able to catch npm bugs on different platforms. It has been very helpful.
Since my package.json install line now reads
I need to convince
prebuild-install
to not download and not error, or convincenode-gyp
to not build if it gets run.Is there a known way to achieve this?
Thanks!
The text was updated successfully, but these errors were encountered: