Update for Cardinal specific behaviour #45
Workflow file for this run
This file contains 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: Build VCV Rack Plugin | |
on: [push, pull_request] | |
env: | |
rack-sdk-version: 2.2.0 | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: ${{ matrix.config.os }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: | |
- os: ubuntu-latest | |
arch: lin-x64 | |
compiler: cc | |
install-dependencies: | | |
sudo apt-get update && sudo apt-get install -y libglu-dev | |
- os: macos-latest | |
arch: mac-x64 | |
compiler: cc | |
install-dependencies: | | |
brew install mesa | |
- os: windows-latest | |
arch: win-x64 | |
compiler: gcc | |
install-dependencies: | | |
choco install --no-progress -y zip | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Rack SDK | |
run: | | |
curl -o sdk.zip https://vcvrack.com/downloads/Rack-SDK-${{ env.rack-sdk-version }}-${{ matrix.config.arch }}.zip | |
unzip sdk.zip | |
- name: Install Dependencies | |
run: | | |
${{ matrix.config.install-dependencies }} | |
- name: Build | |
env: | |
RACK_DIR: Rack-SDK | |
CC: ${{ matrix.config.compiler }} | |
run: | | |
make dist | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: dist | |
name: ${{ matrix.config.arch }}.zip | |
publish: | |
name: Publish plugin | |
runs-on: ubuntu-18.04 | |
needs: build | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
path: _artifacts | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
_artifacts/**/*.vcvplugin |