Skip to content

Commit a815d6e

Browse files
committed
Fix CI job 'docker-compose and testcontainers' to only run those modules IT tests
1 parent 1d540a6 commit a815d6e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,17 @@ jobs:
9696
run: |
9797
echo "testcontainers.reuse.enable=true" > $HOME/.testcontainers.properties
9898
99-
- name: Run Container Integration Tests
99+
- name: Build Dependencies
100+
run: |
101+
mvn -s settings.xml clean install \
102+
-DskipTests \
103+
-pl spring-ai-spring-boot-docker-compose,spring-ai-spring-boot-testcontainers \
104+
-am --batch-mode
105+
106+
- name: Run docker-compost and testcontainers Integration Tests
100107
run: |
101108
mvn -s settings.xml -Pintegration-tests verify \
102109
-Dskip.docker-compose=false \
103110
-Dskip.testcontainers=false \
104111
-pl spring-ai-spring-boot-docker-compose,spring-ai-spring-boot-testcontainers \
105-
-am --batch-mode
112+
--batch-mode

0 commit comments

Comments
 (0)