Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name authored and Your Name committed Nov 20, 2023
1 parent ac12599 commit f4e1f79
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/llm/setup-llm-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ runs:
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
sed -i 's/"bigdl-core-xe==" + VERSION + "/"bigdl-core-xe==2.5.0b20231111/g' python/llm/setup.py
# make sure we install the latest version for bigdl-core-xe-esimd
pip uninstall bigdl-core-xe-esimd || true
sed -i 's/"bigdl-core-xe-esimd==" + VERSION + "/"bigdl-core-xe-esimd/g' python/llm/setup.py
sed -i 's/"bigdl-core-xe-esimd==" + VERSION + "/"bigdl-core-xe-esimd==2.5.0b20231111/g' python/llm/setup.py
pip install requests
if [[ ${{ runner.os }} == 'Linux' ]]; then
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llm-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ on:
inputs:
llmcpp-ref:
description: 'Ref of llm.cpp code'
default: ''
default: 'cf9cba2b67e8b14841e690f85dd6c272cafb0822'
required: false
type: string
workflow_call:
inputs:
llmcpp-ref:
description: 'Ref of llm.cpp code'
default: ''
default: 'cf9cba2b67e8b14841e690f85dd6c272cafb0822'
required: false
type: string

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/llm-nightly-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ on:
- ".github/actions/llm/convert-test/action.yml"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [test-branch2.4]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/llm_performance_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ on:
- "python/llm/test/benchmark/**"
workflow_dispatch:
workflow_call:
push:
branches: [test-branch2.4]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down

0 comments on commit f4e1f79

Please sign in to comment.