[NFC] Reformat clang tests for better automated testing in CI/qemu #351
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RuyiSDK LLVM Tests | |
on: | |
workflow_dispatch: | |
push: | |
ignore-forks: true | |
branches: | |
- 'xtheadvector' | |
- 'rebase-*' | |
paths: | |
- 'llvm/**' | |
- 'clang/**' | |
- '.github/workflows/ruyisdk-llvm-tests.yml' | |
- '.github/workflows/llvm-project-tests.yml' | |
pull_request: | |
ignore-forks: true | |
branches: | |
- 'xtheadvector' | |
- 'rebase-*' | |
paths: | |
- 'llvm/**' | |
- 'clang/**' | |
- '.github/workflows/ruyisdk-llvm-tests.yml' | |
- '.github/workflows/llvm-project-tests.yml' | |
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_all: | |
if: github.repository_owner == 'ruyisdk' | |
name: Test llvm,clang | |
uses: ./.github/workflows/llvm-project-tests.yml | |
with: | |
build_target: check-all | |
projects: clang | |