You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2022/10/31 09:02:26 UTC

[skywalking] branch e2e updated (12893fb7b2 -> 011d828a2a)

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

kezhenxu94 pushed a change to branch e2e
in repository https://gitbox.apache.org/repos/asf/skywalking.git


 discard 12893fb7b2 Speed up CI by caching the build of e2e
     new 011d828a2a Speed up CI by caching the build of e2e

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (12893fb7b2)
            \
             N -- N -- N   refs/heads/e2e (011d828a2a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/skywalking.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


[skywalking] 01/01: Speed up CI by caching the build of e2e

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch e2e
in repository https://gitbox.apache.org/repos/asf/skywalking.git

commit 011d828a2ac47bbd135b170a25075e924c4e12e0
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Mon Oct 31 17:02:16 2022 +0800

    Speed up CI by caching the build of e2e
---
 .github/workflows/skywalking.yaml | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/.github/workflows/skywalking.yaml b/.github/workflows/skywalking.yaml
index 57a9f363ed..0159de06b3 100644
--- a/.github/workflows/skywalking.yaml
+++ b/.github/workflows/skywalking.yaml
@@ -601,15 +601,11 @@ jobs:
       - name: Prepare test services
         shell: bash
         run: ./mvnw -B -f test/e2e-v2/java-test-service/pom.xml clean package
-      - name: Setup Go
-        uses: actions/setup-go@v3
-        with:
-          go-version: "1.16"
       - name: Set env var
         run: |
           echo "${{ matrix.test.env }}"  >> $GITHUB_ENV
       - name: ${{ matrix.test.name }}
-        uses: apache/skywalking-infra-e2e@81fab7dbf5bfb201166d7d8e0089f99d2dc761f3
+        uses: apache/skywalking-infra-e2e@756c27dd90773cb2e0747ab782a53047672e97af
         with:
           e2e-file: $GITHUB_WORKSPACE/${{ matrix.test.config }}
       - uses: actions/upload-artifact@v2
@@ -662,12 +658,8 @@ jobs:
           path: docker-images
       - name: Load docker images
         run: find docker-images -name "*.tar" -exec docker load -i {} \;
-      - name: Setup Go
-        uses: actions/setup-go@v3
-        with:
-          go-version: "1.16"
       - name: ${{ matrix.test.name }}
-        uses: apache/skywalking-infra-e2e@81fab7dbf5bfb201166d7d8e0089f99d2dc761f3
+        uses: apache/skywalking-infra-e2e@756c27dd90773cb2e0747ab782a53047672e97af
         env:
           ISTIO_VERSION: ${{ matrix.versions.istio }}
           KUBERNETES_VERSION: ${{ matrix.versions.kubernetes }}
@@ -705,12 +697,8 @@ jobs:
       - name: Prepare test services
         shell: bash
         run: ./mvnw -B -f test/e2e-v2/java-test-service/pom.xml clean package
-      - name: Setup Go
-        uses: actions/setup-go@v3
-        with:
-          go-version: "1.16"
       - name: Java version ${{ matrix.java-version }}
-        uses: apache/skywalking-infra-e2e@81fab7dbf5bfb201166d7d8e0089f99d2dc761f3
+        uses: apache/skywalking-infra-e2e@756c27dd90773cb2e0747ab782a53047672e97af
         env:
           SW_AGENT_JDK_VERSION: ${{ matrix.java-version }}
         with: