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 ef25459fa1 [fix](workflow) Fix the wrong name of concurrency group (#11275) ef25459fa1 is described below commit ef25459fa19a4078f2e6451d2bac471f1a9e2831 Author: Adonis Ling <adonis0...@gmail.com> AuthorDate: Thu Jul 28 14:23:07 2022 +0800 [fix](workflow) Fix the wrong name of concurrency group (#11275) --- .github/workflows/be-ut-clang.yml | 6 ++-- .github/workflows/build-extension.yml | 8 ++--- .github/workflows/fake.yml | 65 ----------------------------------- 3 files changed, 7 insertions(+), 72 deletions(-) diff --git a/.github/workflows/be-ut-clang.yml b/.github/workflows/be-ut-clang.yml index d25e6a9d17..ca2e111e16 100644 --- a/.github/workflows/be-ut-clang.yml +++ b/.github/workflows/be-ut-clang.yml @@ -21,7 +21,7 @@ on: pull_request: concurrency: - group: ${{ github.head_ref || github.ref_name }} (BE UT Clang) + group: ${{ github.ref }} (BE UT Clang) cancel-in-progress: true jobs: @@ -45,7 +45,7 @@ jobs: - 'gensrc/proto/**' - 'gensrc/thrift/**' - - name: Run UT + - name: Run UT ${{ github.ref }} if: ${{ steps.filter.outputs.be_changes == 'true' }} run: | export DEFAULT_DIR='/opt/doris' @@ -72,6 +72,6 @@ jobs: DORIS_TOOLCHAIN=clang ./run-be-ut.sh -j "$(nproc)" --run --clean - - name: Skip UT + - name: Skip UT ${{ github.ref }} if: ${{ steps.filter.outputs.be_changes == 'false' }} run: echo 'No need to run.' diff --git a/.github/workflows/build-extension.yml b/.github/workflows/build-extension.yml index 89efe97589..223b5d8cf8 100644 --- a/.github/workflows/build-extension.yml +++ b/.github/workflows/build-extension.yml @@ -22,7 +22,7 @@ on: pull_request: concurrency: - group: ${{ github.head_ref || github.ref_name }} (Build Extensions) + group: ${{ github.ref }} (Build Extensions) cancel-in-progress: true jobs: @@ -33,7 +33,7 @@ jobs: broker_changes: ${{ steps.filter.outputs.broker_changes }} docs_changes: ${{ steps.filter.outputs.docs_changes }} steps: - - name: Checkout + - name: Checkout ${{ github.ref }} uses: actions/checkout@v3 with: persist-credentials: false @@ -55,7 +55,7 @@ jobs: if: ${{ needs.changes.outputs.broker_changes == 'true' }} runs-on: ubuntu-latest steps: - - name: Checkout + - name: Checkout ${{ github.ref }} uses: actions/checkout@v3 - name: Setup java @@ -82,7 +82,7 @@ jobs: if: ${{ needs.changes.outputs.docs_changes == 'true' }} runs-on: ubuntu-latest steps: - - name: Checkout + - name: Checkout ${{ github.ref }} uses: actions/checkout@v3 - name: Build docs diff --git a/.github/workflows/fake.yml b/.github/workflows/fake.yml deleted file mode 100644 index b5b36a0c28..0000000000 --- a/.github/workflows/fake.yml +++ /dev/null @@ -1,65 +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: 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-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org