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 03:34:30 UTC

[skywalking] branch e2e created (now 4e96b5e68a)

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


      at 4e96b5e68a Speed up CI to cache the build of e2e

This branch includes the following new commits:

     new 4e96b5e68a Speed up CI to cache the build of e2e

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.



[skywalking] 01/01: Speed up CI to cache 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 4e96b5e68aec1979a30a82b65689e5e000d162e2
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Mon Oct 31 11:34:08 2022 +0800

    Speed up CI to cache the build of e2e
---
 .github/workflows/skywalking.yaml | 21 ++++++---------------
 1 file changed, 6 insertions(+), 15 deletions(-)

diff --git a/.github/workflows/skywalking.yaml b/.github/workflows/skywalking.yaml
index 57a9f363ed..d121c7efd0 100644
--- a/.github/workflows/skywalking.yaml
+++ b/.github/workflows/skywalking.yaml
@@ -17,6 +17,9 @@
 name: CI
 
 on:
+  push:
+    branches:
+      - "e2e"
   pull_request:
   schedule:
     - cron: "0 18 * * *" # TimeZone: UTC 0
@@ -601,15 +604,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@gha
         with:
           e2e-file: $GITHUB_WORKSPACE/${{ matrix.test.config }}
       - uses: actions/upload-artifact@v2
@@ -662,12 +661,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@gha
         env:
           ISTIO_VERSION: ${{ matrix.versions.istio }}
           KUBERNETES_VERSION: ${{ matrix.versions.kubernetes }}
@@ -705,12 +700,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@gha
         env:
           SW_AGENT_JDK_VERSION: ${{ matrix.java-version }}
         with: