forked from Mechanical-Advantage/RobotCode2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Earthfile
37 lines (31 loc) · 860 Bytes
/
Earthfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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