fix xpu performance tests by making sure that latest bigdl-core-xe is installed (#9001)
This commit is contained in:
parent
b6c9198d47
commit
c389e1323d
1 changed files with 4 additions and 0 deletions
4
.github/actions/llm/setup-llm-env/action.yml
vendored
4
.github/actions/llm/setup-llm-env/action.yml
vendored
|
|
@ -11,6 +11,10 @@ runs:
|
||||||
- name: Create conda env for llm tests and conduct install tests
|
- name: Create conda env for llm tests and conduct install tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
# make sure we install the latest version for bigdl-core-xe
|
||||||
|
pip uninstall bigdl-core-xe || true
|
||||||
|
sed -i 's/"bigdl-core-xe==" + VERSION + "/"bigdl-core-xe/g' python/llm/setup.py
|
||||||
|
|
||||||
pip install requests
|
pip install requests
|
||||||
if [[ ${{ runner.os }} == 'Linux' ]]; then
|
if [[ ${{ runner.os }} == 'Linux' ]]; then
|
||||||
bash python/llm/dev/release_default_linux.sh default false
|
bash python/llm/dev/release_default_linux.sh default false
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue