fix(ci): console-build matrix entries must sit under 'settings:' - #155
Merged
Conversation
The job references matrix.settings.* but its bare include: list defined matrix.host/target/suffix at the top level instead. runs-on therefore resolved to an empty runner label, and GitHub silently drops such jobs — no error, not even a skipped entry. This kept aimux-web/aimux-cli/ aimux-replay binaries out of the v0.3.0 tag run entirely. Bisected live against the Release workflow (7 dispatched runs): the same body runs when the entries sit under settings: and dies when they are a bare include:. ffi-build survives its bare include: because it references matrix.target/matrix.host (no settings. prefix).
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
根因(7 次 dispatch 二分定位):console-build 引用 ${{ matrix.settings.* }} 但矩阵是裸 include:(定义的是 matrix.host/target/suffix)→ runs-on 求值为空 runner 标签 → GitHub 静默丢弃该 job(无报错、无 skipped 条目)。v0.3.0 tag run 因此完全没有 aimux-web/cli/replay 二进制。修复 = 条目包进 settings: 键(与 job 引用一致,go-build 同款风格)。修复合入后我会 dispatch artifacts-only 回填 v0.3.0 Release。