Skip to content

Commit 6acd202

Browse files
committed
Comment out second tc/docker-compose job in CI
1 parent fce52cd commit 6acd202

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -78,33 +78,33 @@ jobs:
7878
7979

8080
# The docker-compose and testcontainers modules will be compiled and run in a parallel job
81-
container-tests:
82-
name: Container integration tests
83-
runs-on: ubuntu-latest
84-
steps:
85-
- name: Checkout source code
86-
uses: actions/checkout@v4
87-
88-
- name: Set up JDK 17
89-
uses: actions/setup-java@v4
90-
with:
91-
java-version: '17'
92-
distribution: 'temurin'
93-
cache: 'maven'
94-
95-
- name: Configure Testcontainers
96-
run: |
97-
echo "testcontainers.reuse.enable=true" > $HOME/.testcontainers.properties
98-
99-
- name: Run Container Integration Tests
100-
env:
101-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
102-
SPRING_AI_OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
103-
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
104-
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
105-
run: |
106-
mvn -s settings.xml -Pintegration-tests verify \
107-
-Dskip.docker-compose=false \
108-
-Dskip.testcontainers=false \
109-
-pl spring-ai-spring-boot-docker-compose,spring-ai-spring-boot-testcontainers \
110-
-am --batch-mode
81+
# container-tests:
82+
# name: Container integration tests
83+
# runs-on: ubuntu-latest
84+
# steps:
85+
# - name: Checkout source code
86+
# uses: actions/checkout@v4
87+
#
88+
# - name: Set up JDK 17
89+
# uses: actions/setup-java@v4
90+
# with:
91+
# java-version: '17'
92+
# distribution: 'temurin'
93+
# cache: 'maven'
94+
#
95+
# - name: Configure Testcontainers
96+
# run: |
97+
# echo "testcontainers.reuse.enable=true" > $HOME/.testcontainers.properties
98+
#
99+
# - name: Run Container Integration Tests
100+
# env:
101+
# OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
102+
# SPRING_AI_OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
103+
# ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
104+
# ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
105+
# run: |
106+
# mvn -s settings.xml -Pintegration-tests verify \
107+
# -Dskip.docker-compose=false \
108+
# -Dskip.testcontainers=false \
109+
# -pl spring-ai-spring-boot-docker-compose,spring-ai-spring-boot-testcontainers \
110+
# -am --batch-mode

0 commit comments

Comments
 (0)