You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/11/03 02:47:33 UTC

[skywalking] branch wu-sheng-patch-1 created (now b27bf7c)

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

wusheng pushed a change to branch wu-sheng-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


      at b27bf7c  Clear e2e v1 GHA control file

This branch includes the following new commits:

     new b27bf7c  Clear e2e v1 GHA control file

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: Clear e2e v1 GHA control file

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

wusheng pushed a commit to branch wu-sheng-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking.git

commit b27bf7c13719217de655ee1406838914cbf2b1de
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Wed Nov 3 10:47:14 2021 +0800

    Clear e2e v1 GHA control file
---
 .github/actions/e2e-test/action.yml | 54 -------------------------------------
 1 file changed, 54 deletions(-)

diff --git a/.github/actions/e2e-test/action.yml b/.github/actions/e2e-test/action.yml
deleted file mode 100644
index 8c3faab..0000000
--- a/.github/actions/e2e-test/action.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-name: 'Run E2E Test'
-description: 'Common steps when running an E2E Test'
-inputs:
-  test_class:
-    description: 'The e2e test class name'
-    required: true
-runs:
-  using: "composite"
-  steps:
-    - name: Cache local Maven repository
-      uses: actions/cache@v2
-      with:
-        path: ~/.m2/repository
-        key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-        restore-keys: |
-          ${{ runner.os }}-maven-
-    - name: Check License
-      uses: apache/skywalking-eyes@a63f4afcc287dfb3727ecc45a4afc55a5e69c15f
-    - name: Build Docker Image
-      shell: bash
-      env:
-        SKIP_TEST: "true"
-      run: |
-        echo "::group::Build Docker Image"
-        # Retry one more time due to frequent "maven connection reset"
-        make docker || make docker
-        echo "::endgroup::"
-    - name: Run E2E Test
-      shell: bash
-      run: |
-        echo "::group::Build E2E Test Modules"
-        ./mvnw -q -B -f test/e2e/pom.xml clean install
-        echo "::endgroup::"
-        echo "::group::Run E2E Test ${{ inputs.test_class }}"
-        ./mvnw -q --batch-mode -f test/e2e/pom.xml -am -DfailIfNoTests=false test -Dtest=${{ inputs.test_class }}
-        echo "::endgroup::"