File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ cmake -G Ninja ^
14
14
" -DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% " ^
15
15
" -DDPCPP_ROOT=%DPCPP_ROOT% " ^
16
16
" %SRC_DIR% /oneapi_wrapper"
17
- IF % ERRORLEVEL% NEQ 0 exit 1
17
+ IF ERRORLEVEL 1 exit 1
18
18
19
19
ninja -n
20
20
ninja install
21
- IF % ERRORLEVEL% NEQ 0 exit 1
21
+ IF ERRORLEVEL 1 exit 1
22
22
23
23
cd ..
24
24
@@ -33,4 +33,4 @@ set "DPPL_ONEAPI_INTERFACE_INCLDIR=%LIBRARY_PREFIX%/include"
33
33
" %PYTHON% " setup.py clean --all
34
34
" %PYTHON% " setup.py build
35
35
" %PYTHON% " setup.py install
36
- IF % ERRORLEVEL% NEQ 0 exit 1
36
+ IF ERRORLEVEL 1 exit 1
Original file line number Diff line number Diff line change 1
1
call " %ONEAPI_ROOT% /compiler/latest/env/vars.bat"
2
- IF % ERRORLEVEL% NEQ 0 exit 1
2
+ IF ERRORLEVEL 1 exit 1
3
3
4
4
@ echo on
5
5
6
6
" %PYTHON% " -c " import dppl"
7
- IF % ERRORLEVEL% NEQ 0 exit 1
7
+ IF ERRORLEVEL 1 exit 1
8
8
9
9
" %PYTHON% " -c " import dppl.ocldrv"
10
- IF % ERRORLEVEL% NEQ 0 exit 1
10
+ IF ERRORLEVEL 1 exit 1
11
11
12
12
" %PYTHON% " -m unittest -v dppl.tests
13
- IF % ERRORLEVEL% NEQ 0 exit 1
13
+ IF ERRORLEVEL 1 exit 1
You can’t perform that action at this time.
0 commit comments