Tonecarver modules

Set up a vm running Ubuntu. It’s free and easy.

1 Like

If you are using github, you can use github actions to build for all three platforms.

here by way of example is part of my github workflow to get a mac build:

on:
  release:
    types: [published]
name: Release
env:
  RACK_DIR: ${GITHUB_WORKSPACE}/Rack-SDK
  RACK_USER_DIR: ${GITHUB_WORKSPACE}
  RACK_SDK_VERSION: 2.git.588342d7
jobs:
  buildOsx:
    name: Build OSX
    runs-on: macos-10.15
    steps:
    - uses: actions/checkout@master
    - name: install tools
      run: brew install automake
    - name: get Rack-SDK
      run: curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}-mac.zip -o rack-sdk.zip
    - name: unzip SDK
      run: unzip -o rack-sdk.zip
    - name: clean up SDK
      run: rm rack-sdk.zip
    - name: update submodules
      run: git submodule update --init --recursive
    - name: make
      run: make dist
2 Likes

Hey, I just wanted to say what a nice surprise to see Tonecarver re-emerge as Rack modules, as I very much liked your VST work! Looking forward to seeing a Rack version of Boids :dove:

1 Like