From f76dbdb64e6bcf9c81636c59afacea43523e89c1 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Fri, 29 Aug 2025 11:11:48 +0200 Subject: [PATCH] HV-2130 Build enforcer plugin and build config before running tck as these aren't published so the build won't find them... --- .github/workflows/ci-tck-report.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tck-report.yml b/.github/workflows/ci-tck-report.yml index cafdba884..b3e22b267 100644 --- a/.github/workflows/ci-tck-report.yml +++ b/.github/workflows/ci-tck-report.yml @@ -81,7 +81,7 @@ jobs: - name: TCK in standalone mode id: tck-standalone run: | - ./mvnw $MAVEN_ARGS clean verify -pl :hibernate-validator-tck-runner + ./mvnw $MAVEN_ARGS clean verify -pl :hibernate-validator-build-enforcer,:hibernate-validator-build-config,:hibernate-validator-tck-runner echo ".TCK tests in the standalone mode" >> ${{ env.REPORT_FILE }} echo "[source,bash]" >> ${{ env.REPORT_FILE }} @@ -101,7 +101,7 @@ jobs: - name: TCK in container mode id: tck-container run: | - ./mvnw $MAVEN_ARGS clean verify -pl :hibernate-validator-tck-runner -Dincontainer -Dincontainer-prepared + ./mvnw $MAVEN_ARGS clean verify -pl :hibernate-validator-build-enforcer,:hibernate-validator-build-config,:hibernate-validator-tck-runner -Dincontainer -Dincontainer-prepared echo ".TCK tests in the container mode" >> ${{ env.REPORT_FILE }} echo "[source,bash]" >> ${{ env.REPORT_FILE }} @@ -121,7 +121,7 @@ jobs: - name: Signature test id: tck-sigtest run: | - ./mvnw $MAVEN_ARGS clean verify -pl :hibernate-validator-tck-runner -Psigtest + ./mvnw $MAVEN_ARGS clean verify -pl :hibernate-validator-build-enforcer,:hibernate-validator-build-config,:hibernate-validator-tck-runner -Psigtest echo ".Signature test results" >> ${{ env.REPORT_FILE }} echo "[source,bash]" >> ${{ env.REPORT_FILE }}