You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/07/28 06:03:29 UTC

[doris] branch master updated: [fix](github) Fix the configuration of requirement checks (#11281)

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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new a2948811fe [fix](github) Fix the configuration of requirement checks (#11281)
a2948811fe is described below

commit a2948811fe03ab6095ee1ff811d1fa4cf18ab60b
Author: Adonis Ling <ad...@gmail.com>
AuthorDate: Thu Jul 28 14:03:23 2022 +0800

    [fix](github) Fix the configuration of requirement checks (#11281)
---
 .asf.yaml                             | 13 ++++---
 .github/workflows/build-extension.yml |  2 +-
 .github/workflows/fake.yml            | 65 +++++++++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+), 8 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 917d2a895d..f7ea7b4da8 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -48,16 +48,15 @@ github:
       # if strict is true, means "Require branches to be up to date before merging".
         strict: false
         contexts:
-          - BE Code Formatter / Clang Formatter
-          - BE UT (Clang) / BE UT (Clang)
-          - Build Extensions / Detect changes
-          - FE Code Style Checker / CheckStyle
-          - License Check / License Check
-          - Build Extensions / Build Broker
-          - Build Extensions / Build Documents
+          - License Check
+          - Clang Formatter
+          - CheckStyle
           - P0 regression (Doris P0 Regression)
           - FE UT (Doris FE UT)
           - BE UT (Doris BE UT)
+          - Build Broker
+          - Build Documents
+          - BE UT (Clang)
 
       required_pull_request_reviews:
         dismiss_stale_reviews: true
diff --git a/.github/workflows/build-extension.yml b/.github/workflows/build-extension.yml
index 9c41fd6076..89efe97589 100644
--- a/.github/workflows/build-extension.yml
+++ b/.github/workflows/build-extension.yml
@@ -27,7 +27,7 @@ concurrency:
 
 jobs:
   changes:
-    name: Detect changes
+    name: Detect Changes
     runs-on: ubuntu-latest
     outputs:
       broker_changes: ${{ steps.filter.outputs.broker_changes }}
diff --git a/.github/workflows/fake.yml b/.github/workflows/fake.yml
new file mode 100644
index 0000000000..b5b36a0c28
--- /dev/null
+++ b/.github/workflows/fake.yml
@@ -0,0 +1,65 @@
+# 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: Fake Check
+
+on:
+  pull_request:
+
+jobs:
+  job1:
+    name: BE Code Formatter / Clang Formatter
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+
+  job2:
+    name: BE UT (Clang) / BE UT (Clang)
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+
+  job3:
+    name: Build Extensions / Detect changes
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+
+  job4:
+    name: FE Code Style Checker / CheckStyle
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+
+  job5:
+    name: License Check / License Check
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+
+  job6:
+    name: Build Extensions / Build Broker
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+
+  job7:
+    name: Build Extensions / Build Documents
+    runs-on: ubuntu-latest
+    steps:
+      - run: echo 'Fake run'
+


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org