From e851dda79e9a09da9332c8b3bc503d6a9a0b47ba Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Fri, 6 Sep 2024 08:32:21 +0200 Subject: [PATCH] Update tidy tester to ubuntu 24.04. --- .github/workflows/tidy.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tidy.yml b/.github/workflows/tidy.yml index 765a60f224..770119582e 100644 --- a/.github/workflows/tidy.yml +++ b/.github/workflows/tidy.yml @@ -16,7 +16,7 @@ concurrency: jobs: tidy: name: tidy - runs-on: [ubuntu-22.04] + runs-on: [ubuntu-24.04] # # The following condition only runs the workflow on 'push' or if the @@ -30,23 +30,20 @@ jobs: - uses: actions/checkout@v4 - name: modules run: | - sudo apt-get install -y software-properties-common - sudo add-apt-repository -y ppa:ginggs/deal.ii-9.4.0-backports sudo apt-get update sudo apt-get install -yq --no-install-recommends \ - clang-12 \ - clang-tidy-12 \ - numdiff \ + clang-18 \ + clang-tidy-18 \ libboost-all-dev \ libcgal-dev \ + libhdf5-mpi-dev \ + libmetis-dev \ libp4est-dev \ - trilinos-all-dev \ + numdiff \ petsc-dev \ - libmetis-dev \ - libhdf5-mpi-dev + trilinos-all-dev - name: tidy run: | mkdir build cd build - export PATH=/usr/lib/llvm-12/share/clang/:$PATH ../contrib/utilities/run_clang_tidy.sh .. -- 2.39.5