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" }