fix: CI — install musl-gcc before setting default + add ci-fresh-install workflow#64
Closed
Sunrisepeak wants to merge 3 commits into
Closed
fix: CI — install musl-gcc before setting default + add ci-fresh-install workflow#64Sunrisepeak wants to merge 3 commits into
Sunrisepeak wants to merge 3 commits into
Conversation
The musl-gcc test step assumed the toolchain was already cached. After cache clears, `toolchain default gcc@15.1.0-musl` fails with "not installed". Add explicit install before setting default.
Tests the released mcpp on clean machines (no cache):
Linux: xlings install mcpp → mcpp build → mcpp new → mcpp run
+ LLVM toolchain install (continue-on-error)
macOS: xlings install mcpp → mcpp build → mcpp new → mcpp run
Windows: xlings install mcpp → mcpp build → mcpp new → mcpp run
Each toolchain smoke test now builds mcpp from source (self-host)
instead of a trivial hello-world project. This validates that the
toolchain can compile a real C++23 modules project.
Coverage:
Linux: gcc@16.1.0 builds mcpp ✓
musl-gcc@15.1.0 builds mcpp ✓
llvm@20.1.7 builds mcpp ✓
macOS: llvm@20.1.7 builds mcpp ✓ (default, in self-host smoke)
Windows: llvm@20.1.7 builds mcpp ✓ (new explicit step)
Member
Author
|
Superseded by #63 which has the complete CI architecture changes. |
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.
Summary
mcpp toolchain install gcc 15.1.0-muslbeforetoolchain default— the musl-gcc test assumed the toolchain was cached, fails after cache clearsFollow-up to PR #62.