install MLIR python requirements before building
This commit is contained in:
parent
b52b321f8f
commit
1b58075c54
1 changed files with 2 additions and 1 deletions
|
@ -42,6 +42,7 @@ def generic_linux(projects: str, check_diff: bool) -> List:
|
||||||
'dpkg -l >> artifacts/packages.txt',
|
'dpkg -l >> artifacts/packages.txt',
|
||||||
*checkout_scripts('linux', scripts_refspec),
|
*checkout_scripts('linux', scripts_refspec),
|
||||||
'set +e',
|
'set +e',
|
||||||
|
'pip install -q -r ./mlir/python/requirements.txt',
|
||||||
]
|
]
|
||||||
|
|
||||||
if check_diff:
|
if check_diff:
|
||||||
|
@ -131,7 +132,7 @@ def generic_windows(projects: str) -> List:
|
||||||
clear_sccache if no_cache else '',
|
clear_sccache if no_cache else '',
|
||||||
'sccache --zero-stats',
|
'sccache --zero-stats',
|
||||||
*checkout_scripts('windows', scripts_refspec),
|
*checkout_scripts('windows', scripts_refspec),
|
||||||
|
'pip install -q -r ./mlir/python/requirements.txt',
|
||||||
'powershell -command "'
|
'powershell -command "'
|
||||||
f'%SRC%/scripts/premerge_checks.py --projects=\'{projects}\' --log-level={log_level}; '
|
f'%SRC%/scripts/premerge_checks.py --projects=\'{projects}\' --log-level={log_level}; '
|
||||||
'$$exit=$$?;'
|
'$$exit=$$?;'
|
||||||
|
|
Loading…
Reference in a new issue