mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 23:51:56 +00:00
829b8912cd
Signed-off-by: Joyce Brum <joycebrum@google.com> Reviewed By: tstellar Differential Revision: https://reviews.llvm.org/D144119
41 lines
965 B
YAML
41 lines
965 B
YAML
name: Clang Tests
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
ignore-forks: true
|
|
branches:
|
|
- 'release/**'
|
|
paths:
|
|
- 'clang/**'
|
|
- '.github/workflows/clang-tests.yml'
|
|
- '.github/workflows/llvm-project-tests.yml'
|
|
- '!llvm/**'
|
|
pull_request:
|
|
ignore-forks: true
|
|
branches:
|
|
- 'release/**'
|
|
paths:
|
|
- 'clang/**'
|
|
- '.github/workflows/clang-tests.yml'
|
|
- '.github/workflows/llvm-project-tests.yml'
|
|
- '!llvm/**'
|
|
|
|
concurrency:
|
|
# Skip intermediate builds: always.
|
|
# Cancel intermediate builds: only if it is a pull request build.
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
|
|
|
|
jobs:
|
|
check_clang:
|
|
if: github.repository_owner == 'llvm'
|
|
name: Test clang,lldb,libclc
|
|
uses: ./.github/workflows/llvm-project-tests.yml
|
|
with:
|
|
build_target: check-clang
|
|
projects: clang;lldb;libclc
|