From dfc72cd2c49d9ffcb2d9e8222107efbd23248cbd Mon Sep 17 00:00:00 2001 From: "5684185+vsariola@users.noreply.github.com" <5684185+vsariola@users.noreply.github.com> Date: Fri, 23 Feb 2024 20:09:22 +0200 Subject: [PATCH] build: build VSTi instrument binaries also for linux --- .github/workflows/binaries.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index b6fade6..4043c11 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -74,6 +74,16 @@ jobs: output: sointu-track-native params: -tags=native cmd/sointu-track/main.go packages: libegl-dev libvulkan-dev libxkbcommon-x11-dev libwayland-dev libasound2-dev libx11-xcb-dev libxcursor-dev libxfixes-dev + - os: ubuntu-latest + asmnasm: /home/runner/nasm/nasm + output: sointu-vsti.so + params: -buildmode=c-shared -tags=plugin ./cmd/sointu-vsti/ + packages: libegl-dev libvulkan-dev libxkbcommon-x11-dev libwayland-dev libasound2-dev libx11-xcb-dev libxcursor-dev libxfixes-dev + - os: ubuntu-latest + asmnasm: /home/runner/nasm/nasm + output: sointu-vsti-native.so + params: -buildmode=c-shared -tags="plugin,native" ./cmd/sointu-vsti/ + packages: libegl-dev libvulkan-dev libxkbcommon-x11-dev libwayland-dev libasound2-dev libx11-xcb-dev libxcursor-dev libxfixes-dev - os: macos-latest asmnasm: /Users/runner/nasm/nasm output: sointu-track