mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-31 06:04:58 +00:00
829b8912cd
Signed-off-by: Joyce Brum <joycebrum@google.com> Reviewed By: tstellar Differential Revision: https://reviews.llvm.org/D144119
43 lines
971 B
YAML
43 lines
971 B
YAML
name: lldb Tests
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
ignore-forks: true
|
|
branches:
|
|
- 'release/**'
|
|
paths:
|
|
- 'lldb/**'
|
|
- '.github/workflows/lldb-tests.yml'
|
|
- '.github/workflows/llvm-project-tests.yml'
|
|
- '!clang/**'
|
|
- '!llvm/**'
|
|
pull_request:
|
|
ignore-forks: true
|
|
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:
|
|
build_target: ''
|
|
projects: clang;lldb
|