llama stack builds #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Llama stack builds | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| env: | |
| LLAMA_RELEASE: "0.1.9" | |
| jobs: | |
| ansible: | |
| runs-on: ubuntu-latest | |
| environment: ci | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{env.LLAMA_RELEASE}} | |
| repository: meta-llama/llama-stack | |
| - name: python deps | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y python3-pip | |
| - name: Install repo packages | |
| run: | | |
| cd llama-stack | |
| pip install -U . | |
| - name: run llama stack build | |
| run: | | |
| USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. llama stack build --template remote-vllm --image-type container |