-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Build: Update Gutenberg => Core integration #10638
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
Closed
youknowriad
wants to merge
33
commits into
WordPress:trunk
from
youknowriad:update/gutenberg-integration
Closed
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
0179101
Build: Update Gutenberg => Core integration
youknowriad 0918414
Fix checkout script
youknowriad f8a5915
Simplify checkout script
youknowriad 97d841d
Automation: Updating built files with changes.
3491e94
Fix build
youknowriad 615935d
Disable auto-commit
youknowriad fd22185
Fix JSHint
youknowriad 9179bc9
Consolidate block-json building
youknowriad f75ee83
Fix windows build
youknowriad 22b6c24
Fix unit tests
youknowriad cf9e95e
Disable auto-commit workflow temporarily
youknowriad 24a477e
update snapshot modules unit tests
youknowriad ae06a3f
Update src built files
youknowriad 68595ce
Fix MathML
youknowriad a8cd847
Revert "Disable auto-commit workflow temporarily"
youknowriad 076a09b
Revert "Disable auto-commit"
youknowriad a2789ba
Use content hashes for versions
youknowriad 2f1cf73
Shallow clone
youknowriad c6e915e
Stable build
youknowriad cbbec60
Automation: Updating built files with changes.
9c85a70
Increase memory for the build process
youknowriad 35f1935
Remove gutenberg built process workflow: Now Gutenberg is always buil…
youknowriad 0dd718a
Normalize paths betweens Operating systems
youknowriad 7492638
More stable version hashes
youknowriad 14874d7
Avoid linting removed files
youknowriad d7ebe98
gitignore all of Gutenberg generated code
youknowriad 4aca339
Simplify modules registration
youknowriad 7070531
Simplify build
youknowriad 4a9d5e3
Fix block CSS building
youknowriad b96f171
Format build files
youknowriad 0ef1698
More copy simplifications
youknowriad cb5ecf5
Restore unit test fetch priority after fix in trunk
youknowriad 0b4a0ae
Fix flaky test_object_cache_thresholds test on MariaDB
youknowriad 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
100 changes: 0 additions & 100 deletions
100
.github/workflows/reusable-test-gutenberg-build-process.yml
This file was deleted.
Oops, something went wrong.
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
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 |
|---|---|---|
|
|
@@ -20,6 +20,7 @@ wp-tests-config.php | |
| /node_modules | ||
| /npm-debug.log | ||
| /build | ||
| /gutenberg | ||
| /tests/phpunit/build | ||
| /wp-cli.local.yml | ||
| /jsdoc | ||
|
|
@@ -30,15 +31,18 @@ wp-tests-config.php | |
| /src/wp-admin/css/colors/*/*.css | ||
| /src/wp-admin/js | ||
| /src/wp-includes/assets/* | ||
| !/src/wp-includes/assets/script-loader-packages.min.php | ||
| !/src/wp-includes/assets/script-modules-packages.min.php | ||
| /src/wp-includes/js | ||
| /src/wp-includes/css/dist | ||
| /src/wp-includes/css/*.min.css | ||
| /src/wp-includes/css/*-rtl.css | ||
| /src/wp-includes/blocks/**/*.css | ||
| /src/wp-includes/blocks/**/*.js | ||
| /src/wp-includes/blocks/**/*.js.map | ||
| /src/wp-includes/blocks/* | ||
| !/src/wp-includes/blocks/index.php | ||
| /src/wp-includes/build | ||
| /src/wp-includes/class-wp-block-parser.php | ||
| /src/wp-includes/class-wp-block-parser-block.php | ||
| /src/wp-includes/class-wp-block-parser-frame.php | ||
| /src/wp-includes/theme.json | ||
| /src/wp-includes/theme-i18n.json | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if we need to manually add this to svnignore too |
||
| /packagehash.txt | ||
| /artifacts | ||
| /setup.log | ||
|
|
||
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
Oops, something went wrong.
Oops, something went wrong.
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.
What's this for?
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.
Typescript building on MacOS consumes more memory than the default allocated memory to node processes. I recall we had to do something similar elsewhere. (Without it the build fails on MacOS on CI)