From 04d037c8fdb15ef491cb96003194faef9a0f3ec8 Mon Sep 17 00:00:00 2001 From: Ilayaperumal Gopinathan Date: Wed, 16 Apr 2025 22:02:09 +0100 Subject: [PATCH] Pass maven properties for integration-tests compilation task Signed-off-by: Ilayaperumal Gopinathan --- .github/actions/do-integration-test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/do-integration-test/action.yml b/.github/actions/do-integration-test/action.yml index 34e17b0..5dfa02d 100644 --- a/.github/actions/do-integration-test/action.yml +++ b/.github/actions/do-integration-test/action.yml @@ -38,7 +38,7 @@ runs: - name: Install shell: bash - run: cd spring-ai && ./mvnw -ntp install -DskipTests + run: cd spring-ai && echo 'Running with maven properties:' ${{ inputs.maven-properties }} && ./mvnw -ntp install -DskipTests ${{ inputs.maven-properties }} - name: Run ${{ inputs.model-name }} model tests shell: bash