Skip to content

Commit ab016ae

Browse files
authored
Add hardcoded year for systemcore compiler (#246)
1 parent 017b585 commit ab016ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ToolchainPlugin/src/main/java/edu/wpi/first/toolchain/systemcore/SystemCoreToolchainPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void apply(Project project) {
6767

6868
public void populateDescriptor(ToolchainDescriptor descriptor) {
6969
Provider<File> fp = project.provider(() -> {
70-
String year = systemcoreExt.getToolchainVersion().get().split("-")[0].toLowerCase();
70+
String year = "2027_alpha1";
7171
File frcHomeLoc = new File(new FrcHome(year).get(), "systemcore");
7272
return frcHomeLoc;
7373
});

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java {
1313

1414
allprojects {
1515
group = "edu.wpi.first"
16-
version = "2025.11.1"
16+
version = "2025.12.1"
1717

1818
if (project.hasProperty('publishVersion')) {
1919
version = project.publishVersion

testing/cpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import edu.wpi.first.nativeutils.vendordeps.WPIVendorDepsPlugin
33

44
plugins {
55
id "cpp"
6-
id "edu.wpi.first.NativeUtils" version "2025.11.1"
6+
id "edu.wpi.first.NativeUtils" version "2025.12.1"
77
}
88

99
nativeUtils.addWpiNativeUtils()

0 commit comments

Comments
 (0)