File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
.github/actions/do-autoconfigure-test Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -205,8 +205,24 @@ runs:
205
205
206
206
- name : Run Spring AI Autoconfigure MCP Client test
207
207
shell : bash
208
+ if : ${{ inputs.spring-ai-branch == '1.0.x' }}
208
209
run : cd spring-ai && echo 'Running with maven properties:' ${{ inputs.maven-properties }} && ./mvnw -ntp -pl auto-configurations/mcp/spring-ai-autoconfigure-mcp-client -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
209
210
211
+ - name : Run Spring AI Autoconfigure MCP common Client test
212
+ shell : bash
213
+ if : ${{ inputs.spring-ai-branch == 'main' }}
214
+ run : cd spring-ai && echo 'Running with maven properties:' ${{ inputs.maven-properties }} && ./mvnw -ntp -pl auto-configurations/mcp/spring-ai-autoconfigure-mcp-client-common -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
215
+
216
+ - name : Run Spring AI Autoconfigure MCP HTTP Client test
217
+ shell : bash
218
+ if : ${{ inputs.spring-ai-branch == 'main' }}
219
+ run : cd spring-ai && echo 'Running with maven properties:' ${{ inputs.maven-properties }} && ./mvnw -ntp -pl auto-configurations/mcp/spring-ai-autoconfigure-mcp-client-httpclient -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
220
+
221
+ - name : Run Spring AI Autoconfigure MCP Webflux Client test
222
+ shell : bash
223
+ if : ${{ inputs.spring-ai-branch == 'main' }}
224
+ run : cd spring-ai && echo 'Running with maven properties:' ${{ inputs.maven-properties }} && ./mvnw -ntp -pl auto-configurations/mcp/spring-ai-autoconfigure-mcp-client-webflux -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
225
+
210
226
- name : Run Spring AI Autoconfigure MCP Server test
211
227
shell : bash
212
228
run : cd spring-ai && echo 'Running with maven properties:' ${{ inputs.maven-properties }} && ./mvnw -ntp -pl auto-configurations/mcp/spring-ai-autoconfigure-mcp-server -Pintegration-tests ${{ inputs.maven-properties }} -Dfailsafe.rerunFailingTestsCount=2 verify
You can’t perform that action at this time.
0 commit comments