Skip to content

Commit b9dadaa

Browse files
committed
test build
Signed-off-by: Ryan Cook <rcook@redhat.com>
1 parent f1bb09d commit b9dadaa

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Llama stack builds
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
branches: [ main ]
7+
workflow_dispatch:
8+
env:
9+
LLAMA_RELEASE: "0.1.9"
10+
11+
12+
jobs:
13+
llama-stack-build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
with:
19+
ref: release-${{env.LLAMA_RELEASE}}
20+
repository: meta-llama/llama-stack.git
21+
22+
- name: python deps
23+
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y python3-pip
26+
27+
- name: Install repo packages
28+
run: |
29+
cd llama-stack
30+
pip install -U .
31+
32+
- name: run llama stack build
33+
run: |
34+
USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. llama stack build --template remote-vllm --image-type container

0 commit comments

Comments
 (0)