Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger authored and github-actions[bot] committed Oct 9, 2024
1 parent 9abd08d commit 6298588
Show file tree
Hide file tree
Showing 7 changed files with 123 additions and 61 deletions.
3 changes: 2 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "bzlmodrio-pathplannerlib",
version = "2025.0.0-beta-1.1",
version = "2024.2.8",
compatibility_level = 2024,
)

Expand All @@ -20,6 +20,7 @@ use_repo(
"bazelrio_com_pathplanner_lib_pathplannerlib-cpp_linuxarm64",
"bazelrio_com_pathplanner_lib_pathplannerlib-cpp_linuxathena",
"bazelrio_com_pathplanner_lib_pathplannerlib-cpp_linuxx86-64",
"bazelrio_com_pathplanner_lib_pathplannerlib-cpp_osxuniversal",
"bazelrio_com_pathplanner_lib_pathplannerlib-cpp_windowsx86-64",
)

Expand Down
61 changes: 41 additions & 20 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions generate/vendor_dep.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"fileName": "PathplannerLib-beta.json",
"fileName": "PathplannerLib.json",
"name": "PathplannerLib",
"version": "2025.0.0-beta-1.1",
"version": "2024.2.8",
"uuid": "1b42324f-17c6-4875-8e77-1c312bc8c786",
"frcYear": "2024",
"mavenUrls": [
Expand All @@ -12,22 +12,23 @@
{
"groupId": "com.pathplanner.lib",
"artifactId": "PathplannerLib-java",
"version": "2025.0.0-beta-1.1"
"version": "2024.2.8"
}
],
"jniDependencies": [],
"cppDependencies": [
{
"groupId": "com.pathplanner.lib",
"artifactId": "PathplannerLib-cpp",
"version": "2025.0.0-beta-1.1",
"version": "2024.2.8",
"libName": "PathplannerLib",
"headerClassifier": "headers",
"sharedLibrary": false,
"skipInvalidPlatforms": true,
"binaryPlatforms": [
"windowsx86-64",
"linuxx86-64",
"osxuniversal",
"linuxathena",
"linuxarm32",
"linuxarm64"
Expand Down
43 changes: 31 additions & 12 deletions maven_cpp_deps.bzl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions maven_java_deps.bzl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions private/cpp/PathplannerLib-cpp/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ cc_library(
linkstatic = True,
tags = ["manual"],
target_compatible_with = select({
"@bazel_tools//src/conditions:darwin": ["@platforms//:incompatible"],
"@rules_bzlmodrio_toolchains//constraints/is_raspi32:raspi32": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
Expand All @@ -26,6 +25,7 @@ filegroup(
name = "shared_raw",
srcs = select({
"@rules_bzlmodrio_toolchains//conditions:linux_x86_64": ["@bazelrio_com_pathplanner_lib_pathplannerlib-cpp_linuxx86-64//:shared"],
"@rules_bzlmodrio_toolchains//conditions:osx": ["@bazelrio_com_pathplanner_lib_pathplannerlib-cpp_osxuniversal//:shared"],
"@rules_bzlmodrio_toolchains//conditions:windows": ["@bazelrio_com_pathplanner_lib_pathplannerlib-cpp_windowsx86-64//:shared"],
"@rules_bzlmodrio_toolchains//constraints/is_bullseye32:bullseye32": ["@bazelrio_com_pathplanner_lib_pathplannerlib-cpp_linuxarm32//:shared"],
"@rules_bzlmodrio_toolchains//constraints/is_bullseye64:bullseye64": ["@bazelrio_com_pathplanner_lib_pathplannerlib-cpp_linuxarm64//:shared"],
Expand All @@ -39,7 +39,6 @@ cc_library(
name = "shared",
srcs = [":shared_raw"],
target_compatible_with = select({
"@bazel_tools//src/conditions:darwin": ["@platforms//:incompatible"],
"@rules_bzlmodrio_toolchains//constraints/is_raspi32:raspi32": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
Expand Down
Loading

0 comments on commit 6298588

Please sign in to comment.