This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git
The following commit(s) were added to refs/heads/main by this push:
new b1110acf #1645: Parallelize build post-steps and checks for faster CI
(#1644)
b1110acf is described below
commit b1110acf2156a257788578005acacffd59ff583d
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Jun 12 10:18:37 2026 +0200
#1645: Parallelize build post-steps and checks for faster CI (#1644)
* chore: parallelize build post-steps and checks for faster CI
* chore: keep minify sequential to avoid race with markdown
---
package.json | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package.json b/package.json
index 96a1a29b..25909278 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,8 @@
"version": "1.0.0-SNAPSHOT",
"license": "Apache-2.0",
"scripts": {
- "build": "run-s -l build:antora build:hugo build:sitemap build:htaccess
build:markdown build:minify",
+ "build": "run-s -l build:antora build:hugo build:post build:minify",
+ "build:post": "run-p -l build:sitemap build:htaccess build:markdown",
"build-all": "yarn workspaces foreach --all --topological-dev run build",
"build:antora": "run-s -l build:antora-prep build:antora-perf",
"build:antora-prep": "yarn exec
antora-playbook-snippets/assemble-playbook.sh antora-playbook-production.yml
playbook-export-site-manifest.yml",
@@ -16,7 +17,7 @@
"check:html": "html-validate public",
"check:links": "deadlinks-linux public",
"check:redirects": "tests/redirect.sh -s",
- "checks": "run-s -l check:links check:html check:redirects",
+ "checks": "run-p -l check:links check:html check:redirects",
"clean": "gulp clean",
"check:dependencies": "run-p check:cache check:dedupe",
"check:cache": "yarn workspaces foreach --all install --immutable
--immutable-cache --check-cache",