-
-
Notifications
You must be signed in to change notification settings - Fork 279
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
added docs for swapfile switch #1988
added docs for swapfile switch #1988
Conversation
src/maintainer/conda_forge_yml.rst
Outdated
@@ -79,6 +79,9 @@ mapping for Azure-specific configuration options. For example: | |||
# toggle for freeing up some extra space on the default Azure Pipelines | |||
# linux image before running the Docker container for building | |||
free_disk_space: False | |||
# toggle for creating a 10G swap file on the default Azure Pipelines | |||
# linux image before running the Docker container for building | |||
make_10G_swap: False |
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.
Wonder if we should allow the size to be customizable. Something like this perhaps?
make_10G_swap: False | |
linux_swap_size: 10Gb |
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.
Yes this is a great idea, the default can be zero and if it is zero it just skips that whole block, but if greater than zero we make a swap file of that size
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.
Yeah actually default of 0
makes more sense. Let's go with that
Thanks Mike! 🙏 Had some thoughts on how the configuration could be presented |
Thanks Mike! 🙏 |
PR Checklist:
This PR is for adding docs if conda-forge/conda-smithy#1751 is merged