ci: builder pipeline analog#4
Merged
Merged
Conversation
Translates .github/workflows/maven.yml into a builder pipeline: push(main)+manual trigger, Maven package in a temurin-17 image with a cached local .m2 repository. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DwSZP6cxy4haqynzgcNHVV
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.
Adds a builder pipeline under
.builder/pipelines/mirroring the existing GitHub Actions Maven workflow, so the same build can run on builder (GitLab-style YAML, AI-aware CI/CD)..builder/pipelines/maven.yml— analog of.github/workflows/maven.yml: triggers on push tomain(plus manual), checks out the repo, and runsmvn -B packagein amaven:3.9-eclipse-temurin-17image with a cached local.m2repository.Additive and inert: the GitHub Actions workflow is untouched and keeps running. No secrets, no deploys.
Minor translation notes:
maven:3.9-eclipse-temurin-17) since the repo has no./mvnwwrapper; this preserves the JDK 17 + Maven combination from the original.pull_requesttrigger maps to push/manual, as builder triggers on branch pushes rather than PR events.