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 6cb452c22d [improvement](test)Set compile required and add 
clickbench,arm to buildall (#16944)
6cb452c22d is described below

commit 6cb452c22d7fd7ba305d4d105a657c68bb3661a5
Author: zhangguoqiang <18372634...@163.com>
AuthorDate: Tue Feb 21 14:47:17 2023 +0800

    [improvement](test)Set compile required and add clickbench,arm to buildall 
(#16944)
---
 .asf.yaml                                         |  2 ++
 .github/workflows/auto_trigger_teamcity.yml       | 23 ++++++++++-------------
 regression-test/suites/es_p0/test_es_query.groovy |  1 +
 3 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 2d35d64aef..ee6759b3da 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -62,6 +62,7 @@ github:
           - BE UT (macOS)
           - Build Third Party Libraries (Linux)
           - Build Third Party Libraries (macOS)
+          - COMPILE (DORIS_COMPILE)
 
       required_pull_request_reviews:
         dismiss_stale_reviews: true
@@ -91,3 +92,4 @@ github:
 
 notifications:
     pullrequests_status:  commits@doris.apache.org
+
diff --git a/.github/workflows/auto_trigger_teamcity.yml 
b/.github/workflows/auto_trigger_teamcity.yml
index fcb53dbbea..97614f2cf6 100644
--- a/.github/workflows/auto_trigger_teamcity.yml
+++ b/.github/workflows/auto_trigger_teamcity.yml
@@ -18,9 +18,6 @@
 name: Auto trigger teamcity
 
 on:
-  pull_request:
-    branches:
-      - master
   issue_comment:
     types: [created, edited]
   pull_request_review_comment:
@@ -32,7 +29,7 @@ env:
 
 jobs:
   run_compile_pipeline:
-    if: contains(github.event.comment.body, 'buildall') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'buildall') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -52,7 +49,7 @@ jobs:
           comment="${{ github.event.comment.body }}"
           encoded_string=$(perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' 
"${comment}")
           echo ${encoded_string}
-          pipelines_arr="Doris_Doris_FeUt Doris_DorisBeUt_BeUt 
Doris_DorisCompile_Compile"
+          pipelines_arr="Doris_Doris_FeUt Doris_DorisBeUt_BeUt 
Doris_DorisCompile_Compile Doris_Benchmark_Clickbench 
Doris_ArmPipeline_P0Regression"
           sleep 10s
           for pipeline in ${pipelines_arr}
           do
@@ -63,7 +60,7 @@ jobs:
   
 
   run_p0_external_pipeline:
-    if: (contains(github.event.comment.body, 'p0') || 
contains(github.event.comment.body, 'external')) && 
contains(github.event.comment.body, 'run')
+    if: (contains(github.event.comment.body, 'p0') || 
contains(github.event.comment.body, 'external')) && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -88,7 +85,7 @@ jobs:
           eval ${execute_command}
 
   run_p1_pipeline:
-    if: contains(github.event.comment.body, 'p1') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'p1') && 
contains(github.event.comment.body, 'run')  && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -113,7 +110,7 @@ jobs:
           eval ${execute_command}
 
   run_fe_ut_pipeline:
-    if: contains(github.event.comment.body, 'feut') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'feut') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -139,7 +136,7 @@ jobs:
           eval ${execute_command}
 
   run_be_ut_pipeline:
-    if: contains(github.event.comment.body, 'beut') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'beut') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -165,7 +162,7 @@ jobs:
           eval ${execute_command}
 
   run_compile_only_pipeline:
-    if: contains(github.event.comment.body, 'compile') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'compile') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -191,7 +188,7 @@ jobs:
           eval ${execute_command}
 
   run_clickbench_pipeline:
-    if: contains(github.event.comment.body, 'clickbench') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'clickbench') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -217,7 +214,7 @@ jobs:
           eval ${execute_command}
 
   run_arm_pipeline:
-    if: contains(github.event.comment.body, 'arm') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'arm') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
@@ -244,7 +241,7 @@ jobs:
 
 
   run_for_test_pipeline:
-    if: contains(github.event.comment.body, 'just_for_test') && 
contains(github.event.comment.body, 'run')
+    if: contains(github.event.comment.body, 'just_for_test') && 
contains(github.event.comment.body, 'run') && 
!contains(github.event.comment.body, 'Thanks for your contribution')
 
     runs-on: ubuntu-latest
 
diff --git a/regression-test/suites/es_p0/test_es_query.groovy 
b/regression-test/suites/es_p0/test_es_query.groovy
index a2b14b00ee..9f0efcc3b4 100644
--- a/regression-test/suites/es_p0/test_es_query.groovy
+++ b/regression-test/suites/es_p0/test_es_query.groovy
@@ -46,6 +46,7 @@ suite("test_es_query", "p0") {
             "enable_keyword_sniff"="true"
         );
         """
+
         sql """create resource if not exists es8_resource properties(
             "type"="es",
             "hosts"="http://127.0.0.1:$es_8_port";,


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

Reply via email to