Skip to content
Merged
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
36 changes: 36 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: Compile Web Application

on:
pull_request:
types: [opened, synchronize, edited]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install dependencies # Installs dependencies for pulling gcc toolchain and installing with pip
run: sudo apt-get install git python3 pip tar wget -y > /dev/null

- name: Get gcc-arm-none-eabi toolchain # downloads toolchain file from url
run: wget -nv https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2

- name: Unzip gcc-arm-none-eabi toolchain # Unzips file so that it is usable
run: tar -xjf gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2

- name: Add custom directory to GITHUB_PATH (Bash) # Adds the toolchain's executable to the path so they can be called directly
run: echo "/home/runner/work/2024-2025-Vex/2024-2025-Vex/gcc-arm-none-eabi-10.3-2021.10/bin" >> $GITHUB_PATH

- name: Install pros # Installs pros for compile
run: python3 -m pip install pros-cli > /dev/null

- name: Disable Pros Monitoring # Since this is a pipeline we do not want to spam their analytics
run: pros --use-analytics false

- name: Compile Project
run: pros make
working-directory: /home/runner/work/2024-2025-Vex/2024-2025-Vex/ # If the repo name gets changed this will need to change as well
4 changes: 2 additions & 2 deletions include/devils/2025/blazeRobot.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include "subsystems/GoalRushSystem.hpp"
#include "subsystems/MogoGrabSystem.hpp"
#include "subsystems/HornLEDSystem.hpp"
#include "autonomous/BlazeMatchAuto.hpp"
#include "autonomous/BlazeSkillsAuto.hpp"
#include "autonomous/blazeMatchAuto.hpp"
#include "autonomous/blazeSkillsAuto.hpp"

namespace devils
{
Expand Down
2 changes: 1 addition & 1 deletion include/devils/hardware/symmetricControl.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "smartMotorGroup.hpp"
#include "vexbridge/vexBridge.h"
#include "vexbridge/vexbridge.h"

namespace devils
{
Expand Down
2 changes: 1 addition & 1 deletion include/vexbridge/vbValue.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <cstdint>
#include "vexbridge.hpp"
#include "vexBridge.hpp"

namespace vexbridge
{
Expand Down
4 changes: 2 additions & 2 deletions include/vexbridge/vexBridge.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once

#include <cstring>
#include "table/ValueTable.hpp"
#include "table/LabelTable.hpp"
#include "table/valueTable.hpp"
#include "table/labelTable.hpp"
#include "serial/drivers/usbSerialDriver.hpp"
#include "serial/serialSocket.hpp"
#include "serial/serialWriter.hpp"
Expand Down