build: remove chkjson #6436
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: Clang-tidy (clang-12, tiles) | |
on: | |
push: | |
branches: [upload] | |
paths: [ "**.cpp", "**.h", "**.c", "**/CMakeLists.txt", "**/Makefile", "**.hpp", "**.cmake", "build-scripts/**","tools/clang-tidy-plugin/**", ".github/workflows/clang-tidy.yml", "**/.clang-tidy" ] | |
pull_request: | |
branches: [upload] | |
paths: [ "**.cpp", "**.h", "**.c", "**/CMakeLists.txt", "**/Makefile", "**.hpp", "**.cmake", "build-scripts/**", "tools/clang-tidy-plugin/**", ".github/workflows/clang-tidy.yml", "**/.clang-tidy" ] | |
# We only care about the latest revision of a PR, so cancel all previous instances. | |
concurrency: | |
group: clang-tidy-build-${{ github.event.pull_request.number || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
skip-duplicates: | |
continue-on-error: true | |
runs-on: ubuntu-22.04 | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
cancel_others: "true" | |
paths: '[ "**.cpp", "**.h", "**.c", "**/CMakeLists.txt", "**/Makefile", "**.hpp", "**.cmake", "build-scripts/**", "tools/clang-tidy-plugin/**", ".github/workflows/clang-tidy.yml", "**/.clang-tidy" ]' | |
build: | |
needs: skip-duplicates | |
if: ${{ needs.skip-duplicates.outputs.should_skip != 'true' }} | |
runs-on: ubuntu-22.04 | |
env: | |
CMAKE: 1 | |
CLANG: clang++-12 | |
COMPILER: clang++-12 | |
CATA_CLANG_TIDY: plugin | |
TILES: 1 | |
SOUND: 1 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: install dependencies | |
run: | | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | |
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main" | |
sudo apt-get update | |
sudo apt-get install libncursesw5-dev clang-12 libclang-12-dev llvm-12-dev llvm-12-tools \ | |
libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev libpulse-dev ccache \ | |
gettext | |
- name: prepare | |
run: bash ./build-scripts/requirements.sh | |
- uses: ammaraskar/gcc-problem-matcher@master | |
- name: run clang-tidy | |
run: bash ./build-scripts/build.sh |