This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 1302b930e7 ARROW-16335: [Release][C++] Windows source verification
runs C++ tests on a single thread
1302b930e7 is described below
commit 1302b930e767430e763feae1d2e47375177d3cca
Author: Jacob Wujciak-Jens <[email protected]>
AuthorDate: Wed May 4 11:30:56 2022 +0200
ARROW-16335: [Release][C++] Windows source verification runs C++ tests on a
single thread
Closes #13054 from assignUser/ARROW-16335-verify-mc
Authored-by: Jacob Wujciak-Jens <[email protected]>
Signed-off-by: Krisztián Szűcs <[email protected]>
---
dev/release/verify-release-candidate.bat | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/release/verify-release-candidate.bat
b/dev/release/verify-release-candidate.bat
index d627094589..30bb69a225 100644
--- a/dev/release/verify-release-candidate.bat
+++ b/dev/release/verify-release-candidate.bat
@@ -121,7 +121,7 @@ cmake --build . --target INSTALL --config Release || exit
/B 1
@rem Needed so python-test.exe works
set PYTHONPATH_ORIGINAL=%PYTHONPATH%
set
PYTHONPATH=%CONDA_PREFIX%\Lib;%CONDA_PREFIX%\Lib\site-packages;%CONDA_PREFIX%\DLLs;%CONDA_PREFIX%;%PYTHONPATH%
-ctest -VV || exit /B 1
+ctest -j%NUMBER_OF_PROCESSORS% --output-on-failure || exit /B 1
set PYTHONPATH=%PYTHONPATH_ORIGINAL%
popd