-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
DOC: Post warnings as reviews on PRs #24731
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
""" | ||
Download artifacts from CircleCI for a documentation build. | ||
|
||
This is run by the :file:`.github/workflows/circleci.yml` workflow in order to | ||
get the warning/deprecation logs that will be posted on commits as checks. Logs | ||
are downloaded from the :file:`docs/logs` artifact path and placed in the | ||
:file:`logs` directory. | ||
|
||
Additionally, the artifact count for a build is produced as a workflow output, | ||
by appending to the file specified by :env:`GITHUB_OUTPUT`. | ||
|
||
If there are no logs, an "ERROR" message is printed, but this is not fatal, as | ||
the initial 'status' workflow runs when the build has first started, and there | ||
are naturally no artifacts at that point. | ||
|
||
This script should be run by passing the CircleCI build URL as its first | ||
argument. In the GitHub Actions workflow, this URL comes from | ||
``github.event.target_url``. | ||
""" | ||
import json | ||
import os | ||
from pathlib import Path | ||
import sys | ||
from urllib.parse import urlparse | ||
from urllib.request import urlopen | ||
|
||
|
||
if len(sys.argv) != 2: | ||
print('USAGE: fetch_doc_results.py CircleCI-build-url') | ||
sys.exit(1) | ||
|
||
target_url = urlparse(sys.argv[1]) | ||
*_, organization, repository, build_id = target_url.path.split('/') | ||
print(f'Fetching artifacts from {organization}/{repository} for {build_id}') | ||
|
||
artifact_url = ( | ||
f'https://circleci.com/api/v2/project/gh/' | ||
f'{organization}/{repository}/{build_id}/artifacts' | ||
) | ||
print(artifact_url) | ||
with urlopen(artifact_url) as response: | ||
artifacts = json.load(response) | ||
artifact_count = len(artifacts['items']) | ||
print(f'Found {artifact_count} artifacts') | ||
|
||
with open(os.environ['GITHUB_OUTPUT'], 'w+') as fd: | ||
fd.write(f'count={artifact_count}\n') | ||
|
||
logs = Path('logs') | ||
logs.mkdir(exist_ok=True) | ||
|
||
found = False | ||
for item in artifacts['items']: | ||
path = item['path'] | ||
if path.startswith('doc/logs/'): | ||
path = Path(path).name | ||
print(f'Downloading {path} from {item["url"]}') | ||
with urlopen(item['url']) as response: | ||
(logs / path).write_bytes(response.read()) | ||
found = True | ||
|
||
if not found: | ||
print('ERROR: Did not find any artifact logs!') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
is it worth it to add the plot_types gallery or nah 'cause it's super specific?
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.
I just copied the existing warning checks, but I don't see any reason not to check
plot_types
as well.