Skip to content

Commit

Permalink
Check build success
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock committed Dec 23, 2023
1 parent e94e599 commit e6f8100
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/build_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARTEFACTS=${OUTPUT}/StftPitchShiftPlugin_artefacts/${CONFIG}
cmake ${ARGS} -DCMAKE_BUILD_TYPE=${CONFIG} -S "${INPUT}" -B "${OUTPUT}" || exit $?
cmake --build "${OUTPUT}" || exit $?

if ! test -f "${ARTEFACTS}/libStftPitchShiftPlugin_SharedCode.a"; then
if ! test -f "${ARTEFACTS}/Standalone/StftPitchShiftPlugin.app"; then
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/build_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARTEFACTS=${OUTPUT}/StftPitchShiftPlugin_artefacts/${CONFIG}
cmake ${ARGS} -DCMAKE_BUILD_TYPE=${CONFIG} -S "${INPUT}" -B "${OUTPUT}" || exit $?
cmake --build "${OUTPUT}" || exit $?

if ! test -f "${ARTEFACTS}/libStftPitchShiftPlugin_SharedCode.a"; then
if ! test -f "${ARTEFACTS}/Standalone/StftPitchShiftPlugin"; then
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/build_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set ARTEFACTS=%OUTPUT%\StftPitchShiftPlugin_artefacts\%CONFIG%
cmake %ARGS% -S "%INPUT%" -B "%OUTPUT%" || exit /b
cmake --build "%OUTPUT%" --config %CONFIG% || exit /b

if not exist "%ARTEFACTS%\StftPitchShiftPlugin_SharedCode.lib" (
if not exist "%ARTEFACTS%\Standalone\StftPitchShiftPlugin.exe" (
exit /b 1
)

Expand Down

0 comments on commit e6f8100

Please sign in to comment.