mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-11 21:13:11 +00:00
config_tools: let windows build scripts auto exit when an error occurs
let windows build scripts auto exit when an error occurs Tracked-On: #6691 Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
This commit is contained in:
parent
c12f3adee0
commit
ebef897088
@ -1,9 +1,9 @@
|
||||
@echo off
|
||||
python scenario_config/schema_slicer.py
|
||||
python scenario_config/jsonschema/converter.py
|
||||
xmllint --xinclude schema/datachecks.xsd > schema/allchecks.xsd
|
||||
python -m build
|
||||
python scenario_config/schema_slicer.py || exit /b
|
||||
python scenario_config/jsonschema/converter.py || exit /b
|
||||
xmllint --xinclude schema/datachecks.xsd > schema/allchecks.xsd || exit /b
|
||||
python -m build || exit /b
|
||||
rem pip install .\dist\acrn_config_tools-3.0-py3-none-any.whl --force-reinstall
|
||||
del .\configurator\packages\configurator\thirdLib\acrn_config_tools-3.0-py3-none-any.whl
|
||||
python .\configurator\packages\configurator\thirdLib\manager.py install
|
||||
python .\configurator\packages\configurator\thirdLib\manager.py install || exit /b
|
||||
echo build and install success
|
||||
|
Loading…
Reference in New Issue
Block a user