Skip to content

Commit

Permalink
[CI] Change on-push-verification job name to "In-tree build / Linux" (#…
Browse files Browse the repository at this point in the history
…527)

Motivation: use the name as check in "Require status checks to pass".
The name should be the same for all branches.
Branch-Protection #516
  • Loading branch information
wenju-he committed May 29, 2024
1 parent 655929a commit af6278e
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions .github/workflows/on-push-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -24,26 +24,8 @@ on:

jobs:

verify_default_branch:
name: Verify for `master` branch
# ref_name for 'on: push'
# base_ref for 'on: pull_request'
if: ${{ (github.event_name == 'push' && github.ref_name == 'master') || (github.event_name == 'pull_request' && github.base_ref == 'master') }}
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 != 'master' && github.base_ref != 'master' }}
Expand Down

0 comments on commit af6278e

Please sign in to comment.