ipex-llm/.github/actions/llm/download-llm-binary/action.yml
xingyuan li 4f152b4e3a [LLM] Merge the llm.cpp build and the pypi release (#8503)
* checkout llm.cpp to build new binary
* use artifact to get latest built binary files
* rename quantize
* modify all release workflow
2023-07-13 16:34:24 +09:00

19 lines
581 B
YAML

name: Download LLM binary files
description: Download built binary files from github artifact
runs:
using: "composite"
steps:
- name: Download all build files
uses: actions/download-artifact@v3
- name: Move build resources
shell: bash
run: |
rm -rf python/llm/llm-binary || true
mkdir python/llm/llm-binary
mv linux-avx2/* python/llm/llm-binary/
mv linux-avx512/* python/llm/llm-binary/
mv windows-avx2/* python/llm/llm-binary/
rm -rf linux-avx2
rm -rf linux-avx512
rm -rf windows-avx2