forked from milvus-io/milvus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: debug why no configuration file when docker-compose up
Signed-off-by: Sammy Huang <[email protected]>
- Loading branch information
1 parent
7978479
commit 5bce4b7
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: code | ||
- name: print working directory | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
- name: Download Caches | ||
uses: ./.github/actions/cache | ||
with: | ||
|
@@ -127,6 +132,8 @@ jobs: | |
- name: Start Service | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
docker-compose up -d azurite | ||
- name: UT | ||
run: | | ||
|
@@ -159,6 +166,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: code | ||
- name: print working directory | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
- name: Download Caches | ||
uses: ./.github/actions/cache | ||
with: | ||
|
@@ -167,6 +179,8 @@ jobs: | |
- name: Start Service | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
docker-compose up -d pulsar etcd minio azurite | ||
- name: UT | ||
run: | | ||
|
@@ -198,6 +212,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: code | ||
- name: print working directory | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
- name: Download Caches | ||
uses: ./.github/actions/cache | ||
with: | ||
|
@@ -206,6 +225,8 @@ jobs: | |
- name: Start Service | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
docker-compose up -d pulsar etcd minio | ||
- name: IntegrationTest | ||
run: | | ||
|