[build] Update native utils for new compile commands files (#5968)

This commit is contained in:
Thad House
2023-11-27 09:47:49 -08:00
committed by GitHub
parent 544b231d4d
commit a7eb422662
2 changed files with 5 additions and 3 deletions

View File

@@ -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

View File

@@ -9,5 +9,5 @@ repositories {
}
}
dependencies {
implementation "edu.wpi.first:native-utils:2024.4.0"
implementation "edu.wpi.first:native-utils:2024.5.0"
}