Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/build-simulation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build (Simulation)

on:
push:

jobs:
build:
name: Build (Simulation)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
cache: gradle
- name: Grant execute permission
run: chmod +x gradlew
- name: Build simulation
run: ./gradlew assemble test
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Build
name: Build (SystemCore)

on:
push:

jobs:
build:
name: Build
name: Build (SystemCore)
runs-on: ubuntu-latest
container: wpilib/roborio-cross-ubuntu:2024-22.04
container: wpilib/systemcore-cross-ubuntu-minimal:2027-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Grant execute permission
run: chmod +x gradlew
- name: Build robot code
run: ./gradlew build
run: ./gradlew assemble test
4 changes: 2 additions & 2 deletions .github/workflows/spotless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-java@v4
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: 17
Expand Down