mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-27 21:58:18 +01:00
0b75829865
Something tells me that 1. I should find a way to test these workflows, and 2. Copying library files in build.rs doesn't seem like the smartest way to do things
40 lines
981 B
YAML
40 lines
981 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
paths:
|
|
- "src/**"
|
|
pull_request:
|
|
branches: ["main"]
|
|
paths:
|
|
- "src/**"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run rustup
|
|
run: rustup toolchain install stable
|
|
- name: Cache stuff maybe
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: Get dependencies
|
|
run: sudo apt update && sudo apt install libwayland-dev libxkbcommon-dev libudev-dev libinput-dev libgbm-dev libseat-dev libsystemd-dev protobuf-compiler
|
|
- name: Setup Lua
|
|
uses: leafo/gh-actions-lua@v10
|
|
with:
|
|
luaVersion: "5.4"
|
|
- name: Setup Lua Rocks
|
|
uses: leafo/gh-actions-luarocks@v4
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests that don't exist
|
|
run: cargo test --verbose
|
|
- name: Celebratory yahoo
|
|
run: echo yahoo
|