Skip to content

Commit 461c011

Browse files
committed
fix:[ci/cd]: 버그 수정
1 parent 86e4814 commit 461c011

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/CI-CD_Pipeline.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ jobs:
7272
timeout 10s bash -c 'until printf "" 2>>/dev/null >>/dev/tcp/localhost/6379; do sleep 1; done'
7373
echo "Redis is ready!"
7474
75+
- name: Test Qdrant connection
76+
run: |
77+
echo "Testing Qdrant connection..."
78+
timeout 20s bash -c 'until curl -sSf http://localhost:6333/collections >/dev/null; do sleep 1; done'
79+
echo "Qdrant is ready!"
80+
7581
# ✅ application-test.yml에서 사용하는 모든 환경변수를 .env 파일에 생성
7682
- name: Create test .env file
7783
working-directory: backend

0 commit comments

Comments
 (0)