Linux build & test onboarding (.NET 10) + SkipRomBuild gate for CLI - #11
Open
barryw wants to merge 2 commits into
Open
Linux build & test onboarding (.NET 10) + SkipRomBuild gate for CLI#11barryw wants to merge 2 commits into
barryw wants to merge 2 commits into
Conversation
e6502.CLI's AssembleRom target ran 'make -C ../ehbasic' unconditionally, so 'dotnet build e6502.sln' (or the CLI project) failed on machines without the cc65 toolchain (ca65/ld65) even when -p:SkipRomBuild=true was passed. e6502.Avalonia already honors that flag; this mirrors the gate so a toolchain-free build of the .NET solution succeeds. Co-Authored-By: Paperclip <noreply@paperclip.ing>
First headless-Linux build/test pass of e6502.sln. Documents the known-good recipe (invariant globalization for missing libicu, SkipRomBuild to bypass the cc65/make ROM-assembly pre-build) and the per-component native dependency map. Baseline: 1321/1802 managed tests pass; the 462 failures are all environmental (ROM/module images absent under SkipRomBuild), not regressions. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Linux build & test onboarding for NovaVM on .NET 10, plus a small build gate that makes the CLI project buildable without the 6502 ROM assembler toolchain.
Commits
e6502.CLI.csprojonly runs the ROM assembly pre-build step whenSkipRomBuildis not set, so the CLI (and downstreamdotnet build) works on machines without the assembler installed. Pass-p:SkipRomBuild=trueto skip it.docs/LINUX-BUILD-AND-TEST.mddocuments the dotnet path, theSkipRomBuild+ invariant-globalization flags, and expected test counts for a clean Linux build/test run.Verification
dotnet build -p:SkipRomBuild=trueanddotnet testpass on Linux with .NET 10 (see doc for exact invocation and expected counts).Co-Authored-By: Paperclip noreply@paperclip.ing