Skip to content

Commit 154a836

Browse files
committed
frame 2025 bot repo
1 parent e064cac commit 154a836

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1611
-851
lines changed

.gitconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[pull]
2+
rebase = true
3+
ff = only
4+
5+
[fetch]
6+
prune = true
7+
8+
[branch]
9+
autoSetupRebase = remote
10+
autoSetupMerge = always
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# This is a basic workflow to build robot code.
2+
3+
name: Build and Simulate on Robot
4+
5+
# Controls when the action will run. Triggers the workflow on push or pull request
6+
# events but only for the main branch.
7+
on:
8+
push:
9+
branches: [ master ]
10+
pull_request:
11+
branches: [ master ]
12+
13+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14+
jobs:
15+
# This workflow contains a single job called "build"
16+
build:
17+
# The type of runner that the job will run on
18+
runs-on: ubuntu-latest
19+
20+
# This grabs the WPILib docker container
21+
container: wpilib/roborio-cross-ubuntu:2024-22.04
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26+
- uses: actions/checkout@v4
27+
28+
# Declares the repository safe and not under dubious ownership.
29+
- name: Add repository to git safe directories
30+
run: git config --global --add safe.directory $GITHUB_WORKSPACE
31+
32+
# download and cache gradle
33+
- uses: gradle/actions/setup-gradle@v3
34+
with:
35+
gradle-version: 8.5
36+
# Grant execute permission for gradlew
37+
- name: Grant execute permission for gradlew
38+
run: chmod +x gradlew
39+
40+
# Runs a single command using the runners shell
41+
- name: Compile and run tests on robot code
42+
run: ./gradlew build

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pathplanner/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"robotWidth": 0.86,
3+
"robotLength": 0.86,
4+
"holonomicMode": true,
5+
"pathFolders": [],
6+
"autoFolders": [
7+
"New Folder"
8+
],
9+
"defaultMaxVel": 3.0,
10+
"defaultMaxAccel": 3.0,
11+
"defaultMaxAngVel": 540.0,
12+
"defaultMaxAngAccel": 720.0,
13+
"maxModuleSpeed": 4.473
14+
}

.vscode/launch.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

.wpilib/wpilib_preferences.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"enableCppIntellisense": false,
33
"currentLanguage": "java",
4-
"projectYear": "YEAR",
4+
"projectYear": "2024",
55
"teamNumber": 69
66
}

0 commit comments

Comments
 (0)