Skip to content

Commit 35e5c3b

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

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
ansible:
14+
runs-on: ubuntu-latest
15+
environment: ci
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
with:
20+
ref: ${{env.LLAMA_RELEASE}}
21+
repository: meta-llama/llama-stack
22+
23+
- name: python deps
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y python3-pip
27+
28+
- name: Install repo packages
29+
run: |
30+
cd llama-stack
31+
pip install -U .
32+
33+
- name: run llama stack build
34+
run: |
35+
USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. llama stack build --template remote-vllm --image-type container

0 commit comments

Comments
 (0)