-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # src/main/java/frc/robot/RobotContainer.java # src/main/java/frc/robot/subsystems/drive/Drive.java
- Loading branch information
Showing
26 changed files
with
1,344 additions
and
521 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
VERSION 0.7 | ||
FROM debian:bookworm-20240110 | ||
RUN apt-get update -y | ||
WORKDIR /RobotCode2024 | ||
|
||
javabase: | ||
RUN apt-get install -y openjdk-17-jdk-headless git | ||
|
||
ccbase: | ||
RUN apt-get install -y build-essential git cmake clang lld | ||
|
||
ccbase-mingw-w64: | ||
FROM +ccbase | ||
RUN apt-get install -y mingw-w64 | ||
|
||
osxcross: | ||
FROM crazymax/osxcross:13.1-r0-debian | ||
SAVE ARTIFACT /osxcross | ||
|
||
robotcode2024-dependencies: | ||
CACHE /root/.gradle | ||
FROM +javabase | ||
COPY gradle/ gradle/ | ||
COPY settings.gradle settings.gradle | ||
COPY build.gradle build.gradle | ||
COPY .wpilib .wpilib | ||
COPY vendordeps vendordeps | ||
COPY gradlew gradlew | ||
RUN ./gradlew build --no-daemon | ||
SAVE IMAGE --cache-hint | ||
|
||
robotcode2024-build: | ||
CACHE /root/.gradle | ||
FROM +robotcode2024-dependencies | ||
COPY src src | ||
RUN ./gradlew build --no-daemon | ||
SAVE IMAGE --cache-hint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.