Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion language-extensions/R/build/linux/build-RExtension.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function build {
-DENL_ROOT=${ENL_ROOT} \
-DPLATFORM=linux \
${REXTENSION_SRC_DIR}
cmake --build ${REXTENSION_WORKING_DIR} --target install
cmake --build ${REXTENSION_WORKING_DIR} --target install --parallel

# Check the exit code of the compiler and exit appropriately so that build will fail.
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function build {
-DR_HOME=${R_HOME} \
-DR_INCLUDE_DIR=${R_INCLUDE} \
${REXTENSIONTEST_SRC_DIR}
cmake --build ${REXTENSIONTEST_WORKING_DIR} --target install
cmake --build ${REXTENSIONTEST_WORKING_DIR} --target install --parallel

# Check the exit code of the compiler and exit appropriately so that build will fail.
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ DEL /S /Q %BUILD_OUTPUT%\Microsoft.SqlServer.CSharpExtension.dll

REM Call cmake build
REM
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL --parallel
CALL :CHECKERROR %ERRORLEVEL% "Error: Failed to build dotnet-core-CSharp-extension-test for CMAKE_CONFIGURATION=%CMAKE_CONFIGURATION%" || EXIT /b %ERRORLEVEL%

REM Advance arg passed to build-dotnet-core-CSharp-extension-test.cmd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function build {
-DJAVA_HOME=${JAVA_HOME} \
-DJAVAEXTENSION_WORKING_DIR=${JAVAEXTENSION_WORKING_DIR} \
${JAVAEXTENSION_HOME}/src
cmake --build ${JAVAEXTENSION_WORKING_DIR} --target install
cmake --build ${JAVAEXTENSION_WORKING_DIR} --target install --parallel

# Check the exit code of the compiler and exit appropriately so that build will fail.
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ ECHO "[INFO] Building Java extension project using CMAKE_CONFIGURATION=%CMAKE_CO

REM Call cmake build
REM
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL --parallel

CALL :CHECKERROR %ERRORLEVEL% "Error: Failed to build Java extension for CMAKE_CONFIGURATION=%CMAKE_CONFIGURATION%" || EXIT /b %ERRORLEVEL%

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function build {
-DBOOST_PYTHON_ROOT=${BOOST_PYTHON_ROOT} \
-DINCLUDE_ROOT=${INCLUDE_ROOT} \
${PYTHONEXTENSION_HOME}/src
cmake --build ${PYTHONEXTENSION_WORKING_DIR} --target install
cmake --build ${PYTHONEXTENSION_WORKING_DIR} --target install --parallel

# Check the exit code of the compiler and exit appropriately so that build will fail.
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ ECHO "[INFO] Building Python extension project using CMAKE_CONFIGURATION=%CMAKE_

REM Call cmake build
REM
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL --parallel

CALL :CHECKERROR %ERRORLEVEL% "Error: Failed to build Python extension for CMAKE_CONFIGURATION=%CMAKE_CONFIGURATION%" || EXIT /b %ERRORLEVEL%

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function build {
-DPYTHONHOME=${PYTHONHOME} \
-DBOOST_PYTHON_ROOT=${BOOST_PYTHON_ROOT} \
${PYTHONEXTENSIONTEST_SRC_DIR}
cmake --build ${PYTHONEXTENSIONTEST_WORKING_DIR} --target install
cmake --build ${PYTHONEXTENSIONTEST_WORKING_DIR} --target install --parallel

# Check the exit code of the compiler and exit appropriately so that build will fail.
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ ECHO "[INFO] Building pythonextension test project using CMAKE_CONFIGURATION=%CM

REM Call cmake build
REM
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL
CALL "%CMAKE_ROOT%\bin\cmake.exe" --build . --config %CMAKE_CONFIGURATION% --target INSTALL --parallel

CALL :CHECKERROR %ERRORLEVEL% "Error: Failed to build Python extension test for CMAKE_CONFIGURATION=%CMAKE_CONFIGURATION%" || EXIT /b %ERRORLEVEL%

Expand Down
2 changes: 1 addition & 1 deletion test/googletest/build/linux/build-googletest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pushd ${BUILD_OUTPUT}
cmake -DCMAKE_INSTALL_PREFIX:PATH=${BUILD_OUTPUT} \
-DPLATFORM=linux \
${GTEST_HOME}/src
cmake --build ${BUILD_OUTPUT} --target install
cmake --build ${BUILD_OUTPUT} --target install --parallel

# Check the exit code of the compiler and exit appropriately so that build will fail.
#
Expand Down
2 changes: 1 addition & 1 deletion test/googletest/build/windows/build-googletest.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ CALL :CHECKERROR %ERRORLEVEL% "Error: Failed to configure googletest-framework |

REM Call build
REM
CALL "mingw32-make.exe" all
CALL "mingw32-make.exe" -j all
CALL :CHECKERROR %ERRORLEVEL% "Error: Failed to build googletest-framework." || EXIT /b %ERRORLEVEL%

REM Continue building using more configs until argv has been exhausted
Expand Down