[Driver] Update FileCheck patterns for AArch64 target features #282
This file contains hidden or 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: LLVM Tests | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'release_*x' | |
| paths: | |
| - 'llvm/**' | |
| - '.github/workflows/llvm-tests.yml' | |
| - '.github/workflows/llvm-project-tests.yml' | |
| pull_request: | |
| branches: | |
| - 'release_*x' | |
| paths: | |
| - 'llvm/**' | |
| - '.github/workflows/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 == 'flang-compiler' | |
| name: Build and Test | |
| uses: ./.github/workflows/llvm-project-tests.yml | |
| with: | |
| build_target: check-all | |
| projects: clang;openmp |