Merge pull request #108 from ncsurobotics/auto_graphing #217
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: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Ubuntu Packages | |
run: sudo apt-get update | |
- uses: awalsh128/cache-apt-pkgs-action@v1 | |
with: | |
packages: llvm \ | |
clang \ | |
libclang-dev \ | |
libgstreamer1.0-dev \ | |
libgstreamer-plugins-base1.0-dev \ | |
libopencv-dev \ | |
libavutil-dev \ | |
libavcodec-dev \ | |
libavformat-dev \ | |
libswscale-dev \ | |
libavresample-dev \ | |
libopenexr-dev \ | |
liblapack-dev \ | |
libatlas-base-dev \ | |
libfreetype-dev \ | |
libharfbuzz-dev \ | |
- name: Install gstreamer | |
run: | | |
sudo apt update | |
sudo apt install -y aptitude | |
sudo aptitude install -y libgstreamer1.0-dev | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run tests | |
run: cargo test --all-features --verbose |