We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1bb09d commit b9dadaaCopy full SHA for b9dadaa
1 file changed
.github/workflows/llama-stack-build.yaml
@@ -0,0 +1,34 @@
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
+ 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
29
+ cd llama-stack
30
+ pip install -U .
31
32
+ - name: run llama stack build
33
34
+ USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. llama stack build --template remote-vllm --image-type container
0 commit comments