Skip to content

Commit

Permalink
chore: add debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed May 16, 2024
1 parent fcd8f52 commit c3193a0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,19 @@ jobs:
-n my-greptimedb
- name: Print GreptimeDB info
if: always()
run: kubectl get all --show-labels -n my-greptimedb
run: |
kubectl get all --show-labels -n my-greptimedb
- name: Export kind logs
if: failure()
run: |
kind export logs /tmp/kind
- name: Upload logs
if: failure()
uses: actions/upload-artifact@v4
with:
name: kind-logs
path: /tmp/kind
retention-days: 3

sqlness:
name: Sqlness Test
Expand Down

0 comments on commit c3193a0

Please sign in to comment.