From a7eb4226622e25cfded1f69a22dfd96798b040c0 Mon Sep 17 00:00:00 2001 From: Thad House Date: Mon, 27 Nov 2023 09:47:49 -0800 Subject: [PATCH] [build] Update native utils for new compile commands files (#5968) --- .github/workflows/lint-format.yml | 6 ++++-- buildSrc/build.gradle | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-format.yml b/.github/workflows/lint-format.yml index fe205377df..b2c6b34c21 100644 --- a/.github/workflows/lint-format.yml +++ b/.github/workflows/lint-format.yml @@ -70,8 +70,10 @@ jobs: run: ./gradlew generateCompileCommands -Ptoolchain-optional-roboRio - name: List changed files run: wpiformat -list-changed-files - - name: Run clang-tidy - run: wpiformat -no-format -tidy-changed -compile-commands=build/compile_commands/linuxx86-64 -vv + - name: Run clang-tidy release + run: wpiformat -no-format -tidy-changed -compile-commands=build/TargetedCompileCommands/linuxx86-64release -vv + - name: Run clang-tidy debug + run: wpiformat -no-format -tidy-changed -compile-commands=build/TargetedCompileCommands/linuxx86-64debug -vv javaformat: name: "Java format" runs-on: ubuntu-22.04 diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index ded147dc44..04dbad3d0b 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -9,5 +9,5 @@ repositories { } } dependencies { - implementation "edu.wpi.first:native-utils:2024.4.0" + implementation "edu.wpi.first:native-utils:2024.5.0" }