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

Update schema-publish.sh #4376

Merged
merged 1 commit into from
Feb 25, 2025
Merged

Conversation

duncanbeevers
Copy link
Contributor

@duncanbeevers duncanbeevers commented Feb 20, 2025

Fixes #4223

🗣️ Discussion

This PR brings the schema publishing workflow into closer alignment with the specification publishing workflow.

🔧 Under-the-hood changes

  • Configure deploydir based on branch name
  • Check branch name for conformance to vX.Y-dev structure
    • build to /deploy/oas/$version if branch name is conformant
    • build to /deploy-preview if branch name is non-conformant
  • Perform only one traversal of schemas structure
  • Remove datesHash data structure
  • Accumulate sed sub-commands & invoke with sed single -e argument

🧑 Contributor-facing Changes

  • Schema publishing process works out-of-the-box on macOSA side-effect of removing intermediate data structures is that we avoid bash-4-isms, enabling out-of-the-box builds on modern macOS versions which ship an old 3.2.57 bash version.
  • Schema publishing process from ad-hoc branch names produces sensible artifacts

🚗 Demo

This screenshot demonstrates running the scripts/schema-publish.sh script from different branch names.
It also includes an interrogation of a generated schema file in order to validate that all of its placeholders are replaced correctly. (Thanks @ralfhandl!)

Screenshot demonstrating running the schemas build process in different branch names, showing how the deploy directory changes, and also showing how multiple different placeholders are replaced with their correct values.

@duncanbeevers duncanbeevers requested review from a team as code owners February 20, 2025 18:29
rm $target.yaml
mv $target.json $target

mv deploy/oas/$version/$base/*.md $target.md
Copy link
Contributor

Choose a reason for hiding this comment

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

This command seems to have been lost. It is necessary when building to deploy/ for the

  • view schema/2024-11-14

links on https://spec.openapis.org to work.

Copy link
Contributor Author

@duncanbeevers duncanbeevers Feb 20, 2025

Choose a reason for hiding this comment

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

I saw that command, but couldn't reason what it was doing, since no .md files are generated in /deploy/**.
Running the script with a clean or missing /deploy makes it a no-op.

Can you point to me where the link-updating bit happens, or show me where the .md files make their way to /deploy?

Copy link
Contributor

Choose a reason for hiding this comment

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

The *.md files only exist in the gh-pages branch, for example in https://github.com/OAI/OpenAPI-Specification/tree/gh-pages/oas/3.1/schema.

The title of each file is specific to that file, and I didn't want to hard-code them in the build script to minimize the differences between the OpenAPI, Overlay, and Arazzo copies of the build script.

Copy link
Contributor Author

@duncanbeevers duncanbeevers Feb 20, 2025

Choose a reason for hiding this comment

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

I'll re-add this command, but I think it indicates a weird space in the abstraction. It seems contradictory to me to both mkdir -p deploy/oas/3.1.1 and to expect that there are already markdown files present there.

I also think it's a bad pattern to do a mv where the input could be multiple files, but the destination is a single file.

It looks like the file we expect to move is actually named the same as $date. Short of restoring latest, could I just move that one $date.md file?

Alternatively, we could go back to having a latest.md, but on publish, rename it to match the latest iteration of the schema. This would preserve the publishing behavior (not creating a latest link or schema), while still removing step of manually renaming the .md file with each revision and allowing us to reference a stable filename for copying in this script.

Copy link
Contributor Author

@duncanbeevers duncanbeevers Feb 21, 2025

Choose a reason for hiding this comment

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

I've pushed a change which replicates the current *.md behavior, as well as introduces some commented-out code probing the pain points mentioned in my comment above.

  • 😐 One implementation supposes the .md file's name always matches the iteration date, which matches the current setup, and is still simpler than globbing files.

  • 😄 One implementation supposes the .md file is always latest.md. This used to be the setup, but it was abandoned. I think this approach is best. See below for more articulation.

  • 😞 One implementation mirrors the current behavior, but selects only the "first" markdown file encountered. This aligns better with the sentiment A mv command whose destination is a file should have a file as its first argument, but in a kind of nonsense way.

  • 😞 The actual implementation mirrors the current behavior, attempting to copy all the markdown files in the deploy directory to $target.md. If there are multiple markdown files present this results in an error later in the script. The actual implementation mirrors the previous one with the head -n 1 removed, to highlight its similarities to that approach.

😄 latest.md is my favorite

The implementation which supposes a markdown file latest.md will be present is my favored approach.
🌿 indicates a benefit to the current process
🌐 indicates a benefit we already have, first gained by abandoning latest

Copy link
Contributor

Choose a reason for hiding this comment

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

Good discussion, please move it over to

Copy link
Contributor

@ralfhandl ralfhandl left a comment

Choose a reason for hiding this comment

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

Almost there 😎

Could you extend the build-src npm script in

"build-src": "npm run validate-markdown && bash ./scripts/md2html/build.sh src",

to also call this script?

    "build-src": "npm run validate-markdown && bash ./scripts/md2html/build.sh src && bash ./scripts/schema-publish.sh",

rm $target.yaml
mv $target.json $target

mv deploy/oas/$version/$base/*.md $target.md
Copy link
Contributor

Choose a reason for hiding this comment

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

Good discussion, please move it over to

Copy link
Contributor

@ralfhandl ralfhandl left a comment

Choose a reason for hiding this comment

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

Almost there. And please trust me, I've tested it on a v9.9-dev branch 😄

ralfhandl
ralfhandl previously approved these changes Feb 21, 2025
Copy link
Contributor

@ralfhandl ralfhandl left a comment

Choose a reason for hiding this comment

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

Thanks!

@ralfhandl ralfhandl requested a review from a team February 24, 2025 12:03
@ralfhandl ralfhandl linked an issue Feb 24, 2025 that may be closed by this pull request
5 tasks
@duncanbeevers
Copy link
Contributor Author

I'm going squash this to a single commit to avoid another fixup! commit hitting main.

Configure deploydir based on branch name
Check branch name for conformance to vX.Y.Z structure
  * deploy to /deploy/oas/$version if branch name is conformant
  * deploy to /deploy-preview if branch name is non-conformant
Perform only one traversal of schemas structure
Remove intermediate data structures (datesHash, sedCmd)
@duncanbeevers duncanbeevers force-pushed the dev-schemas-live-in-src branch from 21c582b to 20117c7 Compare February 24, 2025 23:06
@ralfhandl ralfhandl merged commit 5c8ce0e into OAI:dev Feb 25, 2025
2 checks passed
@ralfhandl ralfhandl mentioned this pull request Mar 8, 2025
11 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Create dev build infrastructure
2 participants