From c220e287c36bced16157aad2de3f34650c4797e5 Mon Sep 17 00:00:00 2001 From: On Freund Date: Sun, 10 May 2026 22:32:07 -0400 Subject: [PATCH] Add sendspin-jvm to conformance matrix and set up Java - Add sendspin-jvm to --to filter so it appears in site results - Add Setup Java step (temurin 17) needed by _gradle_build_result() Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/publish.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 787052c..2b4bf11 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -56,6 +56,12 @@ jobs: with: dotnet-version: "10.0.x" + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + - name: Install package run: uv sync @@ -71,7 +77,7 @@ jobs: --results-dir artifacts/results \ --build-report-path artifacts/build-report.json \ --from "aiosendspin,sendspin-go" \ - --to "aiosendspin,sendspin-cpp,sendspin-dotnet,sendspin-go,sendspin-js,sendspin-rs,SendspinKit" + --to "aiosendspin,sendspin-cpp,sendspin-dotnet,sendspin-go,sendspin-js,sendspin-jvm,sendspin-rs,SendspinKit" - name: Record harness outcome if: always()