Skip to content

Commit 5a2ad90

Browse files
Fix: drop redundant/broken cmake generate_config.cmake call in build.bat
1 parent f47a307 commit 5a2ad90

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

.ci/scripts/build.bat

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,8 @@ if defined PROCESSOR_ARCHITEW6432 set "ARCH=%PROCESSOR_ARCHITEW6432%"
4545

4646
if /I "%ARCH%"=="AMD64" (
4747
set "PLAT=win32e"
48-
set "ARCH_DIR=intel64"
4948
) else if /I "%ARCH%"=="ARM64" (
5049
set "PLAT=winarm"
51-
set "ARCH_DIR=ARM64"
5250
) else (
5351
echo Unknown architecture: %ARCH%
5452
exit /b 1
@@ -57,7 +55,6 @@ if /I "%ARCH%"=="AMD64" (
5755
echo make %1 -j%NUMBER_OF_PROCESSORS% COMPILER=%2 PLAT="%PLAT%" REQCPU=%3
5856
make %1 -j%NUMBER_OF_PROCESSORS% COMPILER=%2 PLAT="%PLAT%" REQCPU=%3 || set errorcode=1
5957

60-
cmake -DINSTALL_DIR=__release_win_%2\daal\latest\lib\cmake\oneDAL -DARCH_DIR="%ARCH_DIR%" -P cmake\scripts\generate_config.cmake || set errorcode=1
6158
rem No cmake config generation here. This script used to call
6259
rem cmake/scripts/generate_config.cmake itself, added by PR #2222 (merged
6360
rem 2023-01-04). Two weeks later PR #2243 (merged 2023-01-20) taught the makefile

0 commit comments

Comments
 (0)