Refresh source configuration #1865
Workflow file for this run
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: Rust | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install build dependencies | |
| uses: awalsh128/cache-apt-pkgs-action@v1 | |
| with: | |
| packages: | | |
| libunwind-dev \ | |
| libclang-dev \ | |
| pkg-config \ | |
| build-essential \ | |
| curl \ | |
| wget \ | |
| gnupg \ | |
| git \ | |
| ca-certificates \ | |
| libgit2-dev \ | |
| libmount-dev \ | |
| libsepol-dev \ | |
| libselinux1-dev \ | |
| libglib2.0-dev \ | |
| libgudev-1.0-dev \ | |
| libgstreamer1.0-dev \ | |
| libgstreamer-plugins-base1.0-dev \ | |
| libgstreamer-plugins-bad1.0-dev \ | |
| libgstrtspserver-1.0-dev | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install build dependencies - Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| # cache: 'yarn' | |
| # cache-dependency-path: 'frontend' | |
| - name: Install build dependencies - Install Yarn | |
| run: npm install --global yarn | |
| - name: Set directory to safe for git | |
| # Note: Required by vergen (https://crates.io/crates/vergen) | |
| run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
| - name: Use cached dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: "${{ hashFiles('**/Cargo.lock') }}" | |
| shared-key: "shared" | |
| - name: Install build dependencies - Rustup | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y | |
| echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
| - name: Generate bindings | |
| run: | | |
| cargo run --package=bindings --verbose --locked | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Check style | |
| run: cargo fmt --check | |
| - name: Check clippy | |
| run: cargo clippy --all-features --locked | |
| - name: Build | |
| run: cargo build --verbose --locked | |
| - name: Install runtime dependencies | |
| uses: awalsh128/cache-apt-pkgs-action@v1 | |
| with: | |
| packages: | | |
| gstreamer1.0-tools \ | |
| gstreamer1.0-x \ | |
| gstreamer1.0-nice \ | |
| gstreamer1.0-libav \ | |
| gstreamer1.0-plugins-ugly | |
| - name: Run tests | |
| run: cargo test --verbose --locked |