CMake: remove DEAL_II_HAVE_ARM_NEON and use DEAL_II_VECTORIZATION_LEV… #576
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: tidy | |
on: | |
push: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
concurrency: | |
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{github.event_name == 'pull_request'}} | |
jobs: | |
tidy: | |
name: tidy | |
runs-on: [ubuntu-24.04] | |
# | |
# The following condition only runs the workflow on 'push' or if the | |
# 'pull_request' is not a draft. This is only useful for hackathons or | |
# other situations when the CI is massively overburdened with pull | |
# requests. | |
# | |
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: modules | |
run: | | |
sudo apt-get update | |
sudo apt-get install -yq --no-install-recommends \ | |
clang-18 \ | |
clang-tidy-18 \ | |
libboost-all-dev \ | |
libcgal-dev \ | |
libhdf5-mpi-dev \ | |
libmetis-dev \ | |
libp4est-dev \ | |
numdiff \ | |
petsc-dev \ | |
trilinos-all-dev | |
- name: tidy | |
run: | | |
mkdir build | |
cd build | |
../contrib/utilities/run_clang_tidy.sh .. |