Skip to content

Commit

Permalink
tool
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonwatson committed Sep 29, 2024
1 parent 4631c0c commit 1d6696a
Show file tree
Hide file tree
Showing 7 changed files with 1,129 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

name: Generate Rust Binaries

on:
push:
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-22.04
container: wpilib/roborio-cross-ubuntu:2023-22.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets:
- x86_64-pc-windows-gnu
- run: cargo build --target x86_64-pc-windows-gnu
working-directory: src/main/rust
- run: find src/main/rust
1 change: 1 addition & 0 deletions src/main/rust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 1d6696a

Please sign in to comment.