From 7987600bcecd6f5eabab14a238f324e84728633f Mon Sep 17 00:00:00 2001 From: Wenju He Date: Wed, 29 May 2024 12:58:35 +0800 Subject: [PATCH] [CI] Change on-push-verification job name to "In-tree build / Linux" Motivation: use the name as check in "Require status checks to pass". The name should be the same for all branches. Branch-Protection #516 --- .github/workflows/on-push-verification.yml | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/.github/workflows/on-push-verification.yml b/.github/workflows/on-push-verification.yml index 7e695c5f..368f7f19 100644 --- a/.github/workflows/on-push-verification.yml +++ b/.github/workflows/on-push-verification.yml @@ -4,7 +4,7 @@ # to choose correct dependencies revisions # ===--- -name: On push & pull-request verification +name: In-tree build run-name: '${{ github.event_name }}: ${{ github.base_ref }} ${{ github.ref_name }}' # github.base_ref null for 'on: push' on: @@ -24,26 +24,8 @@ on: jobs: - verify_default_branch: - name: Verify for `main` branch - # ref_name for 'on: push' - # base_ref for 'on: pull_request' - if: ${{ (github.event_name == 'push' && github.ref_name == 'main') || (github.event_name == 'pull_request' && github.base_ref == 'main') }} - runs-on: ubuntu-22.04 - steps: - - - name: Checkout opencl-clang sources for action files - uses: actions/checkout@v3 - - - name: Run build-opencl-clang action - uses: ./.github/actions/build-opencl-clang - with: - ref_llvm: main - ref_translator: main - ref_opencl-clang: ${{ github.ref }} - verify_release_branch: - name: Verify for `ocl-open-*` release branch + name: Linux # ref_name for 'on: push' # base_ref for 'on: pull_request' if: ${{ github.ref_name != 'main' && github.base_ref != 'main' }}