bug #5 : add mobile base #29
This file contains hidden or 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: Cargo Build | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| name: Rust project - latest | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install Gstreamer | |
| run: | | |
| sudo apt-get update && sudo apt-get -y install libglib2.0-dev libgstreamer1.0-dev \ | |
| libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev protobuf-compiler | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: "true" | |
| lfs: "true" | |
| - run: rustup update stable && rustup default stable | |
| - run: cargo build --verbose |