mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
c1b7f8aa88
By configuring and building 32-bit and 64-bit builds in parallel we can save massive amounts of time usually spent just waiting on other resources while the CPU is idle. On AppVeyor, this results in a roughly 50% lower build time, ensuring that builds can complete faster than before. Artifacts have been reduced to only be created for tagged releases, which also reduces total build time. Additionally the notifications have been reduced to only happen when the build status changes, as there is no reason to notify about things that did not change the status.
9 lines
No EOL
364 B
Batchfile
9 lines
No EOL
364 B
Batchfile
@ECHO OFF
|
|
IF "%APPVEYOR_REPO_TAG%"=="true" (
|
|
ECHO -- Building 7z Archive --
|
|
cmake --build build/64 --target PACKAGE_7Z --config RelWithDebInfo
|
|
ECHO -- Building Zip Archive --
|
|
cmake --build build/64 --target PACKAGE_ZIP --config RelWithDebInfo
|
|
ECHO -- Building Installer --
|
|
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" /Qp ".\build\64\installer.iss" > nul
|
|
) |