-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix Ubuntu install script #8988
Fix Ubuntu install script #8988
Conversation
✅ Deploy Preview for meta-velox canceled.
|
65fd9cb
to
a9ad23f
Compare
This was intentional to only install apt deps and use resolve_dependency for the rest, what is missing? |
@assignUser thanks for the clarification. I will undo the workflow change. |
16dde2f
to
1a52873
Compare
@majetideepak Yes, my intention was to build the deps within the velox build so they can be cached by ccache (which we would need to manually setup for the projects otherwise). The idea being that the ccache would then speed up the overall time compared to building the deps stand alone. But with actions/cache being broken for build caching it doesn't matter for the moment. But I would like to preserve a way to only install the apt/yum deps when using the setup scripts and (like you added in the other PR) a way to only install specific deps instead of all of them. |
1a52873
to
ec28cda
Compare
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.
Thanks, I will start the merge when the scheduled jobs pass.
Looks like the scheduled Fuzzer job is not testing this change which I thought it would. |
it's because it always checks out main, I fixed that in https://github.com/facebookincubator/velox/pull/8734/files#diff-f4109e225f86cb2508cacc3bd71f0782d0d42dd5caa207350bc8f72abbb18af3R82 (I also fixed the need for running the whole script vs sourcing it as well, but for local use this is of course still needed) |
@kgpai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
This reverts commit 84f94bc.
This reverts commit 84f94bc.
Summary: Ubuntu script fails when you run it twice. Add missing SUDO to other system commands in the helper function. Check if conda is already present Pull Request resolved: facebookincubator#8988 Reviewed By: bikramSingh91 Differential Revision: D54955154 Pulled By: kgpai fbshipit-source-id: 946c724ef51f5ae0e8527e8e914f6eb326088746
Ubuntu script fails when you run it twice.
Add missing SUDO to other system commands in the helper function.
Check if conda is already present