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.git


The following commit(s) were added to refs/heads/master by this push:
     new eccca85  Remove fake required workflows (#8692)
eccca85 is described below

commit eccca8506f83715d44372d6011f9f1f804bad225
Author: kezhenxu94 <[email protected]>
AuthorDate: Thu Mar 17 11:29:37 2022 +0800

    Remove fake required workflows (#8692)
---
 .github/workflows/skywalking-fake.yaml |  1 +
 .github/workflows/skywalking.yaml      | 84 ++++------------------------------
 2 files changed, 11 insertions(+), 74 deletions(-)

diff --git a/.github/workflows/skywalking-fake.yaml 
b/.github/workflows/skywalking-fake.yaml
index 1a0b76b..d1738f4 100644
--- a/.github/workflows/skywalking-fake.yaml
+++ b/.github/workflows/skywalking-fake.yaml
@@ -19,6 +19,7 @@ name: CI
 on:
   pull_request:
     paths-ignore:
+      - "**"
       - "!*.md"
       - "!*.txt"
       - "!skywalking-ui"
diff --git a/.github/workflows/skywalking.yaml 
b/.github/workflows/skywalking.yaml
index 0b21754..4af8000 100644
--- a/.github/workflows/skywalking.yaml
+++ b/.github/workflows/skywalking.yaml
@@ -541,88 +541,24 @@ jobs:
         with:
           e2e-file: $GITHUB_WORKSPACE/test/e2e-v2/cases/simple/jdk/e2e.yaml
 
-  ci:
-    if: (github.event_name == 'schedule' && github.repository == 
'apache/skywalking') || (github.event_name != 'schedule')
-    name: CI
-    needs: [ unit-test, integration-test ]
-    runs-on: ubuntu-latest
-    timeout-minutes: 10
-    steps:
-      - name: Merge Requirement
-        run: |
-          if [[ ${{ needs.unit-test.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.integration-test.result }} != 'success' ]]; then
-            exit -1
-          fi
-
-  single:
-    if: (github.event_name == 'schedule' && github.repository == 
'apache/skywalking') || (github.event_name != 'schedule')
-    name: Single
-    needs: [ e2e-test, e2e-test-istio, e2e-test-java-versions ]
-    runs-on: ubuntu-latest
-    timeout-minutes: 10
-    steps:
-      - name: Merge Requirement
-        run: |
-          if [[ ${{ needs.e2e-test.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.e2e-test-istio.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.e2e-test-java-versions.result }} != 'success' ]]; 
then
-            exit -1
-          fi
-
-  cluster:
-    if: (github.event_name == 'schedule' && github.repository == 
'apache/skywalking') || (github.event_name != 'schedule')
-    name: Cluster
-    needs: [ e2e-test, e2e-test-istio, e2e-test-java-versions ]
-    runs-on: ubuntu-latest
-    timeout-minutes: 10
-    steps:
-      - name: Merge Requirement
-        run: |
-          if [[ ${{ needs.e2e-test.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.e2e-test-istio.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.e2e-test-java-versions.result }} != 'success' ]]; 
then
-            exit -1
-          fi
-
-  storage:
-    if: (github.event_name == 'schedule' && github.repository == 
'apache/skywalking') || (github.event_name != 'schedule')
-    name: Storage
-    needs: [ e2e-test, e2e-test-istio, e2e-test-java-versions ]
-    runs-on: ubuntu-latest
-    timeout-minutes: 10
-    steps:
-      - name: Merge Requirement
-        run: |
-          if [[ ${{ needs.e2e-test.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.e2e-test-istio.result }} != 'success' ]]; then
-            exit -1
-          fi
-          if [[ ${{ needs.e2e-test-java-versions.result }} != 'success' ]]; 
then
-            exit -1
-          fi
-
   required:
     if: always()
     name: Required
-    needs: [ unit-test, integration-test, e2e-test, e2e-test-istio, 
e2e-test-java-versions ]
+    needs:
+      - dependency-license
+      - unit-test
+      - integration-test
+      - e2e-test
+      - e2e-test-istio
+      - e2e-test-java-versions
     runs-on: ubuntu-latest
     timeout-minutes: 10
     steps:
       - name: Merge Requirement
         run: |
+          if [[ ${{ needs.dependency-license.result }} != 'success' ]]; then
+            exit -1
+          fi
           if [[ ${{ needs.unit-test.result }} != 'success' ]]; then
             exit -1
           fi

Reply via email to