2022-02-06 02:40:42 +11:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
tags:
|
|
|
|
# Run when pushing version tags, since otherwise it's impossible to
|
|
|
|
# restart a successful build after pushing a tag
|
|
|
|
- '*.*.*'
|
|
|
|
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:
|
2022-02-16 07:26:43 +11:00
|
|
|
os: [ubuntu-18.04, macos-10.15, 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:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
# 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
|
2022-02-06 13:14:41 +11:00
|
|
|
sudo apt-get install -y libgl-dev libxcb1-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev
|
2022-02-06 12:23:01 +11:00
|
|
|
|
2022-02-06 02:50:11 +11:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2022-02-06 02:40:42 +11:00
|
|
|
- name: Set up Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-02-16 04:30:45 +11:00
|
|
|
# FIXME: Needed for SIMD. Diopser can be compiled without SIMD support
|
|
|
|
# though, we'd actually need to test whether both versions
|
|
|
|
# compile
|
2022-02-16 04:07:47 +11:00
|
|
|
toolchain: nightly
|
2022-02-06 02:40:42 +11:00
|
|
|
profile: minimal
|
|
|
|
default: true
|
|
|
|
- name: Build all targets
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --workspace --all-features
|
|
|
|
- name: Run the tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --workspace
|
2022-02-16 23:27:24 +11:00
|
|
|
|
|
|
|
# We won't package the example plugins
|
|
|
|
package:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-18.04, macos-10.15, windows-latest]
|
|
|
|
name: Package plugin binaries
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Fetch all git history
|
|
|
|
run: git fetch --force --prune --tags --unshallow
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y libgl-dev libxcb1-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Set up Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
# FIXME: Needed for SIMD. Diopser can be compiled without SIMD support
|
|
|
|
# though, we'd actually need to test whether both versions
|
|
|
|
# compile
|
|
|
|
toolchain: nightly
|
|
|
|
profile: minimal
|
|
|
|
default: true
|
|
|
|
- name: Package all targets from bundler.toml
|
|
|
|
# Instead of hardcoding which targets to build and package, we'll
|
|
|
|
# package everything that's got en entry in the `bundler.toml` file
|
|
|
|
run: |
|
2022-02-16 23:34:20 +11:00
|
|
|
packages=$(cargo xtask known-packages)
|
2022-02-16 23:27:24 +11:00
|
|
|
for package in $packages; do
|
2022-02-27 06:12:08 +11:00
|
|
|
cargo xtask bundle "$package" --release
|
2022-02-16 23:27:24 +11:00
|
|
|
done
|
|
|
|
|
|
|
|
- name: Determine build archive name
|
|
|
|
run: |
|
2022-02-16 23:42:15 +11:00
|
|
|
echo "ARCHIVE_NAME=nih-plugs-$(git describe --always)-${{ matrix.os }}" >> "$GITHUB_ENV"
|
2022-02-16 23:27:24 +11:00
|
|
|
- name: Move all packaged plugin into a directory
|
|
|
|
run: |
|
|
|
|
mkdir "$ARCHIVE_NAME"
|
2022-02-27 06:04:41 +11:00
|
|
|
mv target/bundled/* "$ARCHIVE_NAME"
|
2022-02-16 23:27:24 +11:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ env.ARCHIVE_NAME }}
|
|
|
|
path: ${{ env.ARCHIVE_NAME }}
|