Skip to content
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

Fixed freeze script github yaml parsing and unfroze the ci versions #1726

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

reinecke
Copy link
Collaborator

The freeze CI versions script had broken with an update to the GitHub documentation formatting. This update uses a slightly more markdown-aware approach to extract the needed info.

Also addressed minor escaping issue in Makefile I'd discovered while cutting the 0.16.0 release.

@reinecke reinecke force-pushed the post-beta-16-unfreeze-ci-versions branch from f25e9bc to 71ee6c1 Compare April 12, 2024 03:39
…Also addressed minor escaping issue in Makefile

Signed-off-by: Eric Reinecke <reinecke.eric@gmail.com>
@reinecke reinecke force-pushed the post-beta-16-unfreeze-ci-versions branch from 71ee6c1 to 6746f2b Compare April 12, 2024 05:14
@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 84.11%. Comparing base (2b9c3a4) to head (6746f2b).
Report is 4 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1726      +/-   ##
==========================================
+ Coverage   79.95%   84.11%   +4.16%     
==========================================
  Files         197      198       +1     
  Lines       21879    22241     +362     
  Branches     4342     4691     +349     
==========================================
+ Hits        17494    18709    +1215     
- Misses       2252     2610     +358     
+ Partials     2133      922    -1211     
Flag Coverage Δ
py-unittests 84.11% <ø> (+4.16%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

see 107 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9d875e7...6746f2b. Read the comment docs.

Copy link
Collaborator

@ssteinbach ssteinbach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems fine, this rearranges how the non-latest versions are fetched AFAICT? I had one question in there on the Makefile, otherwise seems fine.

--token $(OTIO_RELEASE_GITHUB_TOKEN)
--token "${OTIO_RELEASE_GITHUB_TOKEN}"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are you sure about this change? The $(OTIO_RELEASE_GITHUB_TOKEN) means the variable is being subsituted in make, but the extra quoting and braces mean its going to be evaluated in the subshell...I'm not sure if there is a difference. Is that because you don't want the token to appear in the shell output?

def main():
args = _parsed_args()

plat_map = fetch_plat_map()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
plat_map = fetch_plat_map()
plat_map = _fetch_plat_map()

def main():
args = _parsed_args()

def fetch_plat_map():
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
def fetch_plat_map():
def _fetch_plat_map():

@ssteinbach ssteinbach added this to the Public Beta 17 milestone Apr 18, 2024
Co-authored-by: Daniel Flehner Heen <flehnerheener@gmail.com>
Signed-off-by: Eric Reinecke <reinecke.eric@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging this pull request may close these issues.

None yet

4 participants