dongjoon-hyun commented on PR #53079: URL: https://github.com/apache/spark/pull/53079#issuecomment-3536973001
This aims to unblock Apache Spark 4.1.0 release because our release pipeline has been broken since `LLMS` PR landed at `master` branch unfortunately. - https://github.com/apache/spark/actions/workflows/release.yml - https://github.com/apache/spark/actions/runs/19060666797 (2025-11-03) - https://github.com/apache/spark/actions/runs/19094119034 (2025-11-04) ``` + echo 'Generating llms.txt...' Generating llms.txt... + python /opt/spark-rm/generate-llms-txt.py --docs-path . --output _site/llms.txt --version 4.2.0-SNAPSHOT Traceback (most recent call last): File "/opt/spark-rm/generate-llms-txt.py", line 206, in <module> main() File "/opt/spark-rm/generate-llms-txt.py", line 202, in main generate_llms_txt(docs_path, output_path, args.version) File "/opt/spark-rm/generate-llms-txt.py", line 159, in generate_llms_txt with open(output_path, "w", encoding="utf-8") as f: FileNotFoundError: [Errno 2] No such file or directory: '/_site/llms.txt' ``` I fixed the above error like the following. - https://github.com/apache/spark/pull/52934 After that, the release pipeline has been failing still like the following. - https://github.com/apache/spark/actions/runs/19386198324 (2025-11-14) ``` ── Building sitemap ──────────────────────────────────────────────────────────── Writing `sitemap.xml` ── Building docs for llms ────────────────────────────────────────────────────── The extension definition_lists is not supported for gfm --- Backtrace: 1. pkgdown::build_site("..") 2. pkgdown:::build_site_external(pkg = pkg, examples = examples, run_dont_run = run_don… 3. callr::r(function(..., cli_colors, hyperlinks) { … 4. callr:::get_result(output = out, options) 5. callr:::throw(callr_remote_error(remerr, output), parent = fix_msg(remerr[[3]])) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
