Skip to content

Remove the plugin manager and plugin support in favour of compile-time functionality #134

Remove the plugin manager and plugin support in favour of compile-time functionality

Remove the plugin manager and plugin support in favour of compile-time functionality #134

Workflow file for this run

name: Rust CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_and_test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
name: Build and test
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
default: true
- name: Install Ubuntu dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
run: export DEBIAN_FRONTEND=noninteractive && sudo apt update && sudo apt install -y librust-alsa-sys-dev
# Fake dependency to build the binary, otherwise it fails even with the feature off
# Multiline reference: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions
- name: Add fake empty dependency
shell: bash
run: crates/fake-glass.sh
- run: cargo build --release
- run: cargo test