Merge pull request #38 from Rot127/return-group #111
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: LLVM-Tblgen-Build | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- ".github/workflows/LLVM-Auto-Updater.yml" | |
- "CONTRIBUTING.md" | |
- "README.md" | |
- "LICENSE.TXT" | |
- "SECURITY.md" | |
branches: | |
- auto-sync* | |
pull_request: | |
paths-ignore: | |
- ".github/workflows/LLVM-Auto-Updater.yml" | |
- "CONTRIBUTING.md" | |
- "README.md" | |
- "LICENSE.TXT" | |
- "SECURITY.md" | |
branches: | |
- auto-sync* | |
- release/** | |
jobs: | |
build-llvm-tblgen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lukka/get-cmake@latest | |
- name: Checkout llvm-capstone | |
uses: actions/checkout@v3 | |
- name: Build llvm tblgen | |
run: | | |
mkdir build | |
cd build | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug ../llvm | |
cmake --build . --target llvm-tblgen --config Debug |