Skip to content

Add single-job GH Actions workflow for all package builds#2

Merged
danregima merged 2 commits intomainfrom
copilot/implement-single-gh-action-job
Mar 13, 2026
Merged

Add single-job GH Actions workflow for all package builds#2
danregima merged 2 commits intomainfrom
copilot/implement-single-gh-action-job

Conversation

Copy link

Copilot AI commented Mar 10, 2026

The existing unified-build.yml fans out each of the 44 packages into separate jobs, requiring per-job system dep installs and artifact upload/download between every dependency pair. This adds significant overhead and complexity.

Changes

  • New workflow .github/workflows/single-job-build.yml — single build-all job with all 44 packages as sequential steps
  • Shared filesystem eliminates artifact passing; make install in each step makes outputs immediately available to subsequent steps
  • One-time dep install — all system packages installed once at job start instead of redundantly per job
  • Tier-ordered steps — T0→T1→T2→T3→T4→T5 preserves dependency ordering; atomspace-storage, unify, and spacetime are built first within T2 since later tiers depend on them
  • Per-step continue-on-error: true — mirrors the existing continue-on-error behavior per package; a single build failure does not abort the rest
  • Consolidated log artifact — all build logs collected into one build-logs artifact instead of per-package uploads

Structure comparison

unified-build.yml single-job-build.yml
Jobs ~45 1
Artifact passes ~44 upload + ~100 download 0
System dep installs Per job Once
Steps ~300 47

💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: danregima <10253941+danregima@users.noreply.github.com>
Copilot AI changed the title [WIP] Implement all package builds as a single GH Action job Add single-job GH Actions workflow for all package builds Mar 10, 2026
@danregima danregima marked this pull request as ready for review March 13, 2026 01:25
@danregima danregima merged commit 509622a into main Mar 13, 2026
9 of 10 checks passed
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.

2 participants