Skip to content

Commit

Permalink
new template code
Browse files Browse the repository at this point in the history
  • Loading branch information
Vignesh1234587 committed Dec 6, 2024
1 parent 908516b commit 43e6dba
Show file tree
Hide file tree
Showing 48 changed files with 1,991 additions and 2,412 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on:
push:
pull_request:

jobs:
build:
name: Build
runs-on: ubuntu-latest
container: wpilib/roborio-cross-ubuntu:2024-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Grant execute permission
run: chmod +x gradlew
- name: Build robot code
run: ./gradlew build
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,19 @@ out/
.fleet

# Simulation GUI and other tools window save file
networktables.json
simgui*.json
*-window.json

# Simulation data log directory
logs/

# Folder that has CTRE Phoenix Sim device config storage
ctre_sim/

# clangd
/.cache
compile_commands.json

# Version file
src/main/java/frc/robot/BuildConstants.java
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"recommendations": [
"mechanical-advantage.event-deploy-wpilib",
"richardwillis.vscode-spotless-gradle"
]
}
2 changes: 1 addition & 1 deletion .wpilib/wpilib_preferences.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2024",
"projectYear": "2025beta",
"teamNumber": 226
}
Loading

0 comments on commit 43e6dba

Please sign in to comment.