1
0
Fork 0

install MLIR python requirements before building

This commit is contained in:
Mikhail Goncharov 2022-08-18 16:35:57 +02:00
parent b52b321f8f
commit 1b58075c54

View file

@ -42,6 +42,7 @@ def generic_linux(projects: str, check_diff: bool) -> List:
'dpkg -l >> artifacts/packages.txt',
*checkout_scripts('linux', scripts_refspec),
'set +e',
'pip install -q -r ./mlir/python/requirements.txt',
]
if check_diff:
@ -131,7 +132,7 @@ def generic_windows(projects: str) -> List:
clear_sccache if no_cache else '',
'sccache --zero-stats',
*checkout_scripts('windows', scripts_refspec),
'pip install -q -r ./mlir/python/requirements.txt',
'powershell -command "'
f'%SRC%/scripts/premerge_checks.py --projects=\'{projects}\' --log-level={log_level}; '
'$$exit=$$?;'