Started JNI cursed bs crashes for now #187
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
name: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
container: wpilib/roborio-cross-ubuntu:2025-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Grant execute permission | |
run: chmod +x gradlew | |
- name: Install Choreo | |
run: | | |
wget https://github.com/SleipnirGroup/Choreo/releases/download/v2025.0.1/Choreo-v2025.0.1-Linux-x86_64-standalone.zip | |
unzip Choreo-v2025.0.1-Linux-x86_64-standalone.zip | |
sudo mv choreo-cli /usr/bin/choreo-cli | |
- name: Check Formatting | |
run: ./gradlew spotlessCheck | |
- name: Build robot code | |
run: ./gradlew build |