2022-02-06 02:40:42 +11:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
# This otherwise gets run under dash which does not support brace expansion
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
2022-02-16 23:27:24 +11:00
|
|
|
test:
|
2022-02-11 10:08:07 +11:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-06 04:21:23 +10:00
|
|
|
os: [ubuntu-20.04, macos-11, windows-latest]
|
2022-02-16 23:27:24 +11:00
|
|
|
name: Build and test all components
|
2022-02-11 10:08:07 +11:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-02-06 02:40:42 +11:00
|
|
|
steps:
|
2023-01-26 03:29:50 +11:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-06 02:40:42 +11:00
|
|
|
# Needed for git-describe to do anything useful
|
|
|
|
- name: Fetch all git history
|
|
|
|
run: git fetch --force --prune --tags --unshallow
|
2022-02-06 02:50:11 +11:00
|
|
|
|
2022-02-06 12:23:01 +11:00
|
|
|
- name: Install dependencies
|
2022-02-11 10:08:07 +11:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2022-02-06 12:23:01 +11:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2023-04-06 04:28:10 +10:00
|
|
|
sudo apt-get install -y libasound2-dev libgl-dev libjack-dev libx11-xcb-dev libxcb1-dev libxcb-dri2-0-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev
|
2022-02-06 12:23:01 +11:00
|
|
|
|
2023-01-26 03:29:50 +11:00
|
|
|
- uses: actions/cache@v3
|
2022-11-14 04:46:29 +11:00
|
|
|
# FIXME: Caching `target/` causes the Windows runner to blow up after some time
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
2022-02-06 02:50:11 +11:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
2022-11-12 12:22:46 +11:00
|
|
|
key: ${{ matrix.name }}-${{ matrix.cross-target }}
|
2023-01-26 03:29:50 +11:00
|
|
|
- uses: actions/cache@v3
|
2022-11-14 04:46:29 +11:00
|
|
|
if: "!startsWith(matrix.os, 'windows')"
|
2022-11-10 05:54:05 +11:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
2022-11-12 12:22:46 +11:00
|
|
|
key: ${{ matrix.name }}-${{ matrix.cross-target }}
|
2022-02-06 02:50:11 +11:00
|
|
|
|
2022-02-06 02:40:42 +11:00
|
|
|
- name: Set up Rust toolchain
|
2023-01-26 03:22:26 +11:00
|
|
|
# Needed for SIMD
|
|
|
|
uses: dtolnay/rust-toolchain@nightly
|
2022-02-06 02:40:42 +11:00
|
|
|
- name: Run the tests
|
2023-01-26 03:35:31 +11:00
|
|
|
# Don't use --all-features as that will enable a whole bunch of
|
|
|
|
# conflicting iced features
|
|
|
|
run: cargo test --workspace --features "simd,standalone,zstd"
|
2023-02-19 23:13:16 +11:00
|
|
|
|
|
|
|
# This makes sure that NIH-plug can be compiled without VST3 support
|
|
|
|
build-without-vst3:
|
|
|
|
name: Build NIH-plug without VST3 support
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Fetch all git history
|
|
|
|
run: git fetch --force --prune --tags --unshallow
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2023-04-06 04:28:10 +10:00
|
|
|
sudo apt-get install -y libasound2-dev libgl-dev libjack-dev libx11-xcb-dev libxcb1-dev libxcb-dri2-0-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev
|
2023-02-19 23:13:16 +11:00
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: build-without-vst3-ubuntu
|
|
|
|
|
|
|
|
- name: Set up Rust toolchain
|
|
|
|
# Needed for SIMD
|
|
|
|
uses: dtolnay/rust-toolchain@nightly
|
|
|
|
- name: Run the tests
|
|
|
|
run: cargo build --no-default-features
|