Wait, am i required to have some kind of apple developer accout to compile my vst plugin? I dont get it.
Latest posts made by glek
-
RE: GitHub Actions - MacOS - HISE Standalone Compilation Error
-
GitHub Actions - MacOS - HISE Standalone Compilation Error
All i did is i forked the latest develop branch, and ran this github action:
name: CI Build on: workflow_dispatch: jobs: ci_macos: runs-on: macos-latest steps: - name: Cleanup working directory run: rm -rf "${{github.workspace}}" - name: Checkout HISE repository uses: actions/checkout@v1 with: ref: 'develop' - name: Build & Run CI script working-directory: ${{ github.workspace }}/tools/auto_build/ run: sh ./build_ci.sh
It says "Build Succeeded" (with some warnings along the way),
But then fails unit tests...Full log - https://github.com/glekDev/Balanced-Comp-MacOS/actions/runs/14269918064/job/40000546907 or https://raw.githubusercontent.com/glekDev/Balanced-Comp-MacOS/refs/heads/develop/0_ci_macos.txt
what am i doing wrong?
I dont have a mac... I just want to compile my effect plugin with github actions
-
RE: GLOBAL CABLE not working in compiled vst
@Straticah ok, now i got it working, thank you.
but thats weird anyway
-
RE: GLOBAL CABLE not working in compiled vst
@Straticah said in GLOBAL CABLE not working in compiled vst:
dont save it before compiling
I don't understand this
if you don't save the scriptnode before compiling it will compile the wrong thing
No?
-
RE: GLOBAL CABLE not working in compiled vst
@Straticah When i export vst with uncompiled ScriptNode it errors in daw.
But it anyway wont work because it doesnt when i compile "Scriptnode Visualisation 101" snippet
-
RE: GLOBAL CABLE not working in compiled vst
@Lindon but then why does it work inside hise...
-
GLOBAL CABLE not working in compiled vst
Windows 10, Hise develop branch, compiled yesterday
I made a multiband compressor using ScriptNode.
Then i compiled it into Hardcoded Master Fx.
Connected the ui parameters.
Everything works fine, except the Input Level and Gain Reduction meters which are connected using global_cable. They dont work in compiled vst. (but work in hise)Is there some step im missing?
https://forum.hise.audio/topic/8636/ Here is a similar problem, but it wasnt really solved.
When i export vst with uncompiled ScriptNode it errors in daw. (im not sure if thats ok)
I created a simpler project from scratch to test this, but problem remains.
project files: https://drive.google.com/file/d/1yobcCpQLM9ViJJ4I53izSLr5Hc7-OGUy
I even tried compiling "Scriptnode Visualisation 101" snippet, problem remains.