-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
3,652 additions
and
1,157 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,40 @@ | ||
# Adapted from WPILib docs: https://docs.wpilib.org/en/stable/docs/software/advanced-gradlerio/robot-code-ci.html | ||
|
||
name: Build, tests, formatting | ||
|
||
# Controls when the action will run. Triggers the workflow on pull request events. | ||
on: | ||
pull_request | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Grab the WPILib docker container | ||
container: wpilib/roborio-cross-ubuntu:2025-22.04 | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Check-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
|
||
# Declare the repository safe and not under dubious ownership. | ||
- name: Add repository to git safe directories | ||
run: git config --global --add safe.directory $GITHUB_WORKSPACE | ||
|
||
# Grant execute permission for gradlew | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
# Run Gradle commands | ||
- name: Check that the code builds | ||
run: ./gradlew compileKotlin compileJava | ||
|
||
- name: Run tests | ||
run: ./gradlew test | ||
|
||
- name: Check formatting | ||
run: ./gradlew spotlessCheck |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"name": "2025Bot", | ||
"disableSimplification": true, | ||
"rotations": [ | ||
{ | ||
"axis": "x", | ||
"degrees": 90 | ||
}, | ||
{ | ||
"axis": "z", | ||
"degrees": -90 | ||
} | ||
], | ||
"position": [ | ||
0, | ||
0, | ||
0.05545625 | ||
], | ||
"cameras": [], | ||
"components": [ | ||
{ | ||
"zeroedRotations": [ | ||
{ | ||
"axis": "x", | ||
"degrees": 90 | ||
}, | ||
{ | ||
"axis": "z", | ||
"degrees": 90 | ||
} | ||
], | ||
"zeroedPosition": [ | ||
0, | ||
0, | ||
0.05545625 | ||
] | ||
}, | ||
{ | ||
"zeroedRotations": [ | ||
{ | ||
"axis": "x", | ||
"degrees": 90 | ||
}, | ||
{ | ||
"axis": "z", | ||
"degrees": -90 | ||
} | ||
], | ||
"zeroedPosition": [ | ||
-0.65, | ||
0, | ||
-0.48 | ||
] | ||
}, | ||
{ | ||
"zeroedRotations": [ | ||
{ | ||
"axis": "x", | ||
"degrees": 90 | ||
}, | ||
{ | ||
"axis": "z", | ||
"degrees": -90 | ||
} | ||
], | ||
"zeroedPosition": [ | ||
-0.65, | ||
0, | ||
0.0 | ||
] | ||
}, | ||
{ | ||
"zeroedRotations": [ | ||
{ | ||
"axis": "x", | ||
"degrees": -90 | ||
}, | ||
{ | ||
"axis": "z", | ||
"degrees": -90 | ||
}, | ||
{ | ||
"axis": "y", | ||
"degrees": 180 | ||
} | ||
], | ||
"zeroedPosition": [ | ||
-0.79, | ||
0, | ||
-0.84 | ||
] | ||
}, | ||
{ | ||
"zeroedRotations": [ | ||
{ | ||
"axis": "x", | ||
"degrees": -90 | ||
}, | ||
{ | ||
"axis": "z", | ||
"degrees": -90 | ||
}, | ||
{ | ||
"axis": "y", | ||
"degrees": 180 | ||
} | ||
], | ||
"zeroedPosition": [ | ||
0, | ||
0, | ||
0.05 | ||
] | ||
} | ||
] | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.