가장 큰 것: 문서화된 아키텍처 게이트가 규칙을 하나도 실행하지 않았다. 워크플로 7곳과 CLAUDE.md 가 --tests '*CleanArchitectureTest' 를 지정했으나 그 이름의 클래스는 존재하지 않는다. 4곳은 매칭 0건으로 하드 실패하고, 3곳은 다른 필터와 병기돼 아키텍처 규칙 0개를 돌고 초록으로 통과했다. 필터를 패키지 글롭 dev.caskeleton.bootstrap.architecture.* 로 교체했다. *ArchitectureTest 글롭은 20개 중 12개만 잡고 ArchRuleDiscoveryContractTest 등 8개를 놓치므로 쓰지 않았다. 그 외: - ci-gate-matrix 의 release_blocking 이 강제되지 않아 trivy-fs 가 빨개도 release-gate 가 초록이던 것을 실제 의존으로 연결 - build-logic TestKit 이 어떤 CI 에서도 돌지 않던 것을 ci-quality-gates 에 연결 - jpa-next-* 3개, object-storage, fileserver-pr 의 실패할 수 없거나 트리거되지 않던 잡 정리 - 릴리스 태그 네임스페이스 분열로 v* 태그가 web·websocket 게이트를 건너뛰던 것 수정 - 워크플로 SHA 잠금 28개 재생성 (verify-gradle-wrapper.sh) Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
68 lines
2.8 KiB
YAML
68 lines
2.8 KiB
YAML
name: jpa-next-jpa4
|
|
|
|
# Jakarta Persistence 4.0 compatibility lane (experimental plan Task 7).
|
|
#
|
|
# Non-blocking by design: it reports whether the Stable public API still compiles and whether the
|
|
# selected mapping contracts still hold on JPA 4. It publishes nothing, and a red result here never
|
|
# changes a Stable contract — the 3.2 gate keeps asserting what 3.2 must do, because that is what
|
|
# deployments run.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 4 * * 1'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
jpa4-compatibility:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # actions/checkout@v4.2.2
|
|
- name: Validate Gradle wrapper
|
|
id: gradle-wrapper-validation
|
|
uses: gradle/actions/wrapper-validation@3f131e8634966bd73d06cc69884922b02e6faf92 # gradle/actions@v6
|
|
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # actions/setup-java@v4.7.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: "21.0.11+10"
|
|
cache: gradle
|
|
cache-dependency-path: |
|
|
src/**/*.gradle
|
|
src/**/gradle-wrapper.properties
|
|
src/**/gradle.lockfile
|
|
- name: Report Jakarta Persistence 4.0 compatibility
|
|
id: compatibility-probe
|
|
working-directory: src
|
|
run: >-
|
|
./gradlew
|
|
:adapter:outbound:persistence-jpa:test --tests '*CompatibilityLaneDefinitionTest'
|
|
--no-daemon
|
|
--stacktrace
|
|
- name: Record what this lane did and did not execute
|
|
if: always()
|
|
env:
|
|
PROBE_OUTCOME: ${{ steps.compatibility-probe.outcome }}
|
|
run: |
|
|
mkdir -p compatibility-evidence
|
|
{
|
|
echo "target=Jakarta Persistence 4"
|
|
echo "target-coordinate=jakarta.persistence:jakarta.persistence-api:4.x"
|
|
echo "status=NOT_EXECUTABLE"
|
|
echo "probe-result=${PROBE_OUTCOME}"
|
|
echo "reason=the JPA 4 API is not on any configuration this build resolves, so nothing has been compiled against it"
|
|
echo "what-ran=the current runtime's own policy and lane-definition tests"
|
|
echo "sha=${{ github.sha }}"
|
|
} > compatibility-evidence/status.properties
|
|
echo "::notice::Jakarta Persistence 4 compatibility is NOT_EXECUTABLE: the JPA 4 API is not on any configuration this build resolves, so nothing has been compiled against it"
|
|
- name: Upload the compatibility status
|
|
if: always()
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # actions/upload-artifact@v4.6.2
|
|
with:
|
|
name: compatibility-status-jakarta-persistence-4
|
|
path: compatibility-evidence/status.properties
|
|
retention-days: 30
|
|
if-no-files-found: error
|