This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch quick-fix/parallelize-build-checks
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 645031513c2aa28757cab1e7fc1137dbd7f04346
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Jun 12 09:33:08 2026 +0200

    chore: parallelize build post-steps and checks for faster CI
---
 package.json | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json
index 96a1a29b..fe3ca910 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:post": "run-p -l build:sitemap build:htaccess build:markdown 
build:minify",
     "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",

Reply via email to