CLI Build
-
Hey, im trying to automate my builds, before moving to CI/CD i want terminal action but i have error using this command
"F:\Hise\App\HISE-4.1.0\HISE-4.1.0\projects\standalone\Builds\VisualStudio2022\x64\Release with Faust\App\HISE.exe" export_ci "F:\Hise\Projects\TEST\XmlPresetBackups\90.xml" -h F:\Hise\App\HISE-4.1.0\HISE-4.1.0 -t 'instrument' -p 'VST' -a 'x64'
and im getting
EXPORT ERROR: Invalid build options
can you tell me what is wrong? -
I think you need to call the
-h
separately to calling your export command.You don't need to put quotes around these
-t 'instrument' -p 'VST' -a 'x64'
and you are missing the required colons. You should use VST3 rather than VST (unless you have a license from Steinberg)."F:\Hise\App\HISE-4.1.0\HISE-4.1.0\projects\standalone\Builds\VisualStudio2022\x64\Release with Faust\App\HISE.exe" -h:F:\Hise\App\HISE-4.1.0\HISE-4.1.0 "F:\Hise\App\HISE-4.1.0\HISE-4.1.0\projects\standalone\Builds\VisualStudio2022\x64\Release with Faust\App\HISE.exe" export_ci "F:\Hise\Projects\TEST\XmlPresetBackups\90.xml" -t:instrument -p:VST3 -a:x64
For setting the HISE path I use
set_hise_folder -p:PATH
, I'm not sure if that does the same thing as-h
-
@d-healey ok great, documentation is a little confused :)