-
Notifications
You must be signed in to change notification settings - Fork 4.2k
fix: adds content.search to docs apps #35766
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
Conversation
|
Thanks for the pull request, @pomegranited! What's next?Please work through the following steps to get your changes ready for engineering review: 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. 🔘 Let us know that your PR is ready for review:Who will review my changes?This repository is currently maintained by Where can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources:
When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
|
Hello :) Are there any OpenCraft CC's available to review this quick change? @pkulkark @farhaanbukhsh @navinkarkera @ChrisChV @mtyaka Or @MaferMazu from wg-documentation? |
|
@pomegranited i can have a look in an hour 😊 |
sarina
left a comment
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.
@feanil can you comment on Jill's proposal to create a new check for docs building?
|
@pomegranited we tried adding the doc build to edx-platform but it takes over 30mins to build right now so we decided to drop it because we didn't want to block on those builds. |
|
Is it possible to do a monthly build on master? or have it as a check for each named release cut? (I don't know what's possible with Actions) |
|
We still build on every merge to master and build on changes to branches for all supported named releases it just doesn't show up on checks |
|
2U Release Notice: This PR has been deployed to the edX staging environment in preparation for a release to production. |
|
2U Release Notice: This PR has been deployed to the edX production environment. |
1 similar comment
|
2U Release Notice: This PR has been deployed to the edX production environment. |
|
Thanks for getting this merged and backported @sarina !
Hmm.. so we should have seen this issue in the docs build check well before Sumac was cut.. why didn't we?
Any interest in trying sphinx-lint, or has that already been tried? |
|
I would be up for trying sphinx-lint. The docs build check was removed from master: #32741 |
Description
Adds
openedx.core.djangoapps.content.searchto the list of installed applications used by sphinx to generate the platform documentation. This app is included in the CMS django config, not the LMS, and so triggers an error without this change.Supporting information
Fixes this error reported by @feoh on Slack #general:
Private-ref: FAL-3123
Testing instructions
pip install -r requirements/edx/doc.txtmake docs(ok to cancel after the initial setup; this error happens early in the build)Deadline
ASAP -- need to port to Sumac
Author Notes & Concerns
We should have caught this issue when it happened, but there's no docs validation currently in our CI.
I can add a github workflow as part of this change, to do one or more of these steps. Let me know if I should? Also asked on #wg-documentation.
make docsand just make sure it succeeds. This adds some time to the already long CI, but it's a quick thing to add.make docs+ verify that there are no changes to the built docs. This would be the next best thing to suggestion 1, and ensure that our docs are continually updated.make docs-lintstep to our existing list checks that uses e.g sphinx-lint to quickly verify the docs config and syntax. Also not hard to do, but wouldn't increase the CI build time as much as doing a full docs build.