We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--jobs
bundle install
Right now, we're doing the autodetection for parallel gem installing. However, there might be some case that you don't want that to happen.
I think the best solution is to introduce ENV['JOBS'] that you can set when running rake appraisal.
ENV['JOBS']
rake appraisal
Note that this will turned into --jobs= command line argument if this going to be implemented on CLI.
--jobs=
The text was updated successfully, but these errors were encountered:
I completely agree, using parallel gem as optional and using environmental variable as optional:
parallel
appraisal
Sorry, something went wrong.
Add --jobs flag (-j) to set the jobs size
b43db73
Also, remove automatic CPU cores detection and let users specify the number of jobs themselves. Closes #62
9b201e5
20cff63
sikachu
No branches or pull requests
Right now, we're doing the autodetection for parallel gem installing. However, there might be some case that you don't want that to happen.
I think the best solution is to introduce
ENV['JOBS']
that you can set when runningrake appraisal
.Note that this will turned into
--jobs=
command line argument if this going to be implemented on CLI.The text was updated successfully, but these errors were encountered: