Skip to content

Commit

Permalink
De-bump clang tidy
Browse files Browse the repository at this point in the history
LLVM 12 doesn't exist for 24.04, so this can't get bumped until LLVM 16 migration or Ubuntu decides to make LLVM 12 for 24.04
  • Loading branch information
RobbieNeko committed Sep 19, 2024
1 parent 6085a22 commit 98f0afe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
skip-duplicates:
continue-on-error: true
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
Expand All @@ -30,7 +30,7 @@ jobs:
needs: skip-duplicates
if: ${{ needs.skip-duplicates.outputs.should_skip != 'true' }}

runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
env:
CMAKE: 1
CLANG: clang++-12
Expand Down
4 changes: 2 additions & 2 deletions build-scripts/requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ if [[ "$LIBBACKTRACE" == "1" ]]; then
fi

if [ -n "$CATA_CLANG_TIDY" ]; then
pip install --user wheel --upgrade --break-system-packages
pip install --user 'lit==0.11.1' 'click==7.1.2' --break-system-packages
pip install --user wheel
pip install --user 'lit==0.11.1' 'click==7.1.2'
fi

if [ -n "$LANGUAGES" ]; then
Expand Down

0 comments on commit 98f0afe

Please sign in to comment.