Consolidate CI workflows and limit push triggers to main branch#5
Closed
CaptSilver wants to merge 7 commits intoRainyPixel:mainfrom
Closed
Consolidate CI workflows and limit push triggers to main branch#5CaptSilver wants to merge 7 commits intoRainyPixel:mainfrom
CaptSilver wants to merge 7 commits intoRainyPixel:mainfrom
Conversation
Points to 5d1f376 which fixes link tex errors for invisible dependency image layers (Earth/moon in Lucy wallpaper) and adds defensive OOB blend_index clamping for the puppet vertex shader. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ng render graph Removes the generic visibility filter that prevented invisible image objects from being parsed, and adds offscreen render target routing so invisible nodes render without compositing into the main scene while remaining available as link tex dependencies for compose layers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…s and empty particle renderers Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Adds 46 doctest-based tests covering WPTexImageParser, SpecTexs, SpriteAnimation, and utility functions. Build with -DBUILD_TESTS=ON. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace separate build.yml, tests.yml, and lint.yml workflows with a single ci.yml. This fixes duplicate runs on PR branches (push + PR events both fired). Now pushes only trigger on main, PRs trigger once. Jobs: Arch build, Fedora build, unit tests. https://claude.ai/code/session_01SyfDyCvHcppxxWTUJukbhH
Runs clang-format check on C++ sources. Structured as a standalone job so additional linters can be added as extra steps. https://claude.ai/code/session_01SyfDyCvHcppxxWTUJukbhH
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
Reorganized GitHub Actions workflows to consolidate testing and linting into a single CI pipeline, and restricted push-based triggers to the main branch only.
Key Changes
tests.ymlandlint.ymlworkflows into the mainci.ymlfileBuildworkflow renamed toCIto better reflect its expanded scope["**"](all branches) to[main]to reduce CI overhead on feature branchesImplementation Details
https://claude.ai/code/session_01SyfDyCvHcppxxWTUJukbhH