parent
1aa33d35d5
commit
daae7bd4e4
1 changed files with 12 additions and 1 deletions
13
.github/workflows/llm_unit_tests_linux.yml
vendored
13
.github/workflows/llm_unit_tests_linux.yml
vendored
|
|
@ -73,7 +73,6 @@ jobs:
|
||||||
pip install pytest
|
pip install pytest
|
||||||
bash python/llm/test/run-llm-install-tests.sh
|
bash python/llm/test/run-llm-install-tests.sh
|
||||||
source $CONDA_HOME/bin/deactivate
|
source $CONDA_HOME/bin/deactivate
|
||||||
$CONDA_HOME/bin/conda remove -n bigdl-init-llm --all
|
|
||||||
env:
|
env:
|
||||||
ANALYTICS_ZOO_ROOT: ${{ github.workspace }}
|
ANALYTICS_ZOO_ROOT: ${{ github.workspace }}
|
||||||
|
|
||||||
|
|
@ -96,3 +95,15 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# new test steps should be added here
|
# new test steps should be added here
|
||||||
|
|
||||||
|
- name: Run LLM cli test
|
||||||
|
uses: ./.github/actions/llm/llm-cli-flow-verification-linux
|
||||||
|
env:
|
||||||
|
ANALYTICS_ZOO_ROOT: ${{ github.workspace }}
|
||||||
|
|
||||||
|
- name: Clean up test environment
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
$CONDA_HOME/bin/conda env remove -y -n bigdl-init-llm || true
|
||||||
|
env:
|
||||||
|
ANALYTICS_ZOO_ROOT: ${{ github.workspace }}
|
||||||
Loading…
Reference in a new issue