This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-graalvm-distro.git
The following commit(s) were added to refs/heads/main by this push:
new 24970b3 E2E: always upload logs artifact for OAP cluster mode
inspection
24970b3 is described below
commit 24970b3448154eb2f171b457b563d6723f0185fa
Author: Wu Sheng <[email protected]>
AuthorDate: Fri Feb 27 16:56:19 2026 +0800
E2E: always upload logs artifact for OAP cluster mode inspection
---
.github/workflows/ci.yml | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 80104b7..76cf241 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -238,20 +238,8 @@ jobs:
with:
e2e-file: $GITHUB_WORKSPACE/test/e2e/cases/${{ matrix.test.case
}}/e2e.yaml
- - name: Dump OAP logs
+ - name: Upload E2E logs
if: ${{ always() }}
- run: |
- echo "=== OAP Pod Logs ==="
- for f in "${{ env.SW_INFRA_E2E_LOG_DIR
}}"/pods/istio-system/skywalking-oap-*/*.log \
- "${{ env.SW_INFRA_E2E_LOG_DIR }}"/containers/oap*/std*.log;
do
- [ -f "$f" ] || continue
- echo "--- $f ---"
- cat "$f"
- echo ""
- done
-
- - name: Upload logs on failure
- if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: e2e-logs-${{ matrix.test.case }}