We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1bb09d commit 35e5c3bCopy full SHA for 35e5c3b
1 file changed
.github/workflows/llama-stack-build.yaml
@@ -0,0 +1,35 @@
1
+name: Llama stack builds
2
+on:
3
+ push:
4
+ branches: [ main ]
5
+ pull_request:
6
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
30
+ cd llama-stack
31
+ pip install -U .
32
33
+ - name: run llama stack build
34
35
+ USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. llama stack build --template remote-vllm --image-type container
0 commit comments