Make 2027 build (#2422)

This PR updates everything for 2027. This includes removing GradleRIO, simplifying our wpilib version defintion, updating APIs, updating to Java 21, and more.

Note that photonlibpy is failing because robotpy has not been fully updated yet. Examples are omitted because they need to be updated for our new PhotonPoseEstimator API and still need some changes from WPILIB. photonlib windows build is failing because we're waiting for some upstream changes. Finally, images are failing since they don't have Java 21 yet.
This commit is contained in:
Sam Freund
2026-04-11 12:14:42 -05:00
committed by samfreund
parent 4412df1516
commit 68fc1e7129
111 changed files with 630 additions and 578 deletions

View File

@@ -23,10 +23,10 @@
*/
#include <gtest/gtest.h>
#include <wpi/print.h>
#include <wpi/util/print.hpp>
#include "PhotonVersion.h"
TEST(VersionTest, PrintVersion) {
wpi::println("{}", photon::PhotonVersion::versionString);
wpi::util::println("{}", photon::PhotonVersion::versionString);
}