This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-helm.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c69885  Add ghcr login in the e2e (#131)
3c69885 is described below

commit 3c6988593f74281830a6a2f273f4d1c3c2d28b0b
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Mon Oct 9 11:21:31 2023 +0800

    Add ghcr login in the e2e (#131)
---
 .github/workflows/e2e.ci.yaml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/e2e.ci.yaml b/.github/workflows/e2e.ci.yaml
index e34af8e..bcab64c 100644
--- a/.github/workflows/e2e.ci.yaml
+++ b/.github/workflows/e2e.ci.yaml
@@ -56,7 +56,12 @@ jobs:
       SATELLITE_REPO: ghcr.io/apache/skywalking-satellite/skywalking-satellite
     steps:
       - uses: actions/checkout@v2
-
+      - name: Login to ghcr
+        uses: docker/login-action@v1
+        with:
+          registry: ghcr.io
+          username: ${{ github.repository_owner }}
+          password: ${{ secrets.GITHUB_TOKEN }}
       - name: Setup go
         uses: actions/setup-go@v2
         with:
@@ -69,6 +74,14 @@ jobs:
         uses: 
apache/skywalking-infra-e2e@afdf1cca0519d65bc480d8680b7a27f9b41fc421
         with:
           e2e-file: $GITHUB_WORKSPACE/test/e2e/swck/e2e.yaml
+      - if: ${{ failure() }}
+        run: |
+          df -h
+          du -sh .
+          for dir in $(find . -type d -not -name '.*'); do
+            du -sh $dir
+          done
+          docker images
       - uses: actions/upload-artifact@v2
         if: ${{ failure() }}
         name: Upload Logs

Reply via email to