release/19.x: [Github] Fix LLVM Project Tests Workflow on Linux (#122221) #573
Workflow file for this run
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: lldb Tests | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'release/**' | |
| paths: | |
| - 'lldb/**' | |
| - '.github/workflows/lldb-tests.yml' | |
| - '.github/workflows/llvm-project-tests.yml' | |
| - '!clang/**' | |
| - '!llvm/**' | |
| pull_request: | |
| branches: | |
| - 'release/**' | |
| paths: | |
| - 'lldb/**' | |
| - '.github/workflows/lldb-tests.yml' | |
| - '.github/workflows/llvm-project-tests.yml' | |
| - '!clang/**' | |
| - '!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: | |
| build_lldb: | |
| if: github.repository_owner == 'llvm' | |
| name: Build lldb | |
| uses: ./.github/workflows/llvm-project-tests.yml | |
| with: | |
| projects: clang;lldb |