From 5bce4b7a107e20098fda587c149202a302277dce Mon Sep 17 00:00:00 2001 From: Sammy Huang Date: Thu, 11 Jan 2024 17:53:51 +0800 Subject: [PATCH] fix: debug why no configuration file when docker-compose up Signed-off-by: Sammy Huang --- .github/workflows/main.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 2ca6d8d01cfa7..09f082023684d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -119,6 +119,11 @@ jobs: uses: actions/download-artifact@v4.1.0 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/download-artifact@v4.1.0 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/download-artifact@v4.1.0 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: |