Skip to content

Commit

Permalink
Fix clang tidy to avoid docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisb committed Aug 15, 2024
1 parent 8cd0a4a commit 878613f
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/clang_tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
dealii_version: ["master"]

# Run steps in container of dealii's master branch
container:
image: dealii/dealii:${{ matrix.dealii_version }}-focal
options: --user root
#container:
# image: dealii/dealii:${{ matrix.dealii_version }}-focal
# options: --user root

steps:
- name: Setup
Expand All @@ -44,15 +44,20 @@ jobs:
sudo apt-get install -y --no-install-recommends nodejs \
clang-12 \
clang-tidy-12 \
echo "Github actions is sane!"
echo "Running build with deal.ii version ${{ matrix.dealii_version }} on branch ${GITHUB_REF#refs/heads/}"
numdiff \
libboost-all-dev \
libcgal-dev \
libp4est-dev \
trilinos-all-dev \
petsc-dev \
libmetis-dev \
libhdf5-mpi-dev
# Checks-out Lethe with branch of triggering commit
- name: Checkout code
uses: actions/checkout@v2

- name: tidy
- name: Tidy
run: |
mkdir build
cd build
Expand Down

0 comments on commit 878613f

Please sign in to comment.