-
-
Notifications
You must be signed in to change notification settings - Fork 14
61 lines (54 loc) · 1.94 KB
/
publish-docker-cpu-dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Dev - CPU Build and Test
on:
push:
branches-ignore:
- main
workflow_dispatch:
jobs:
build-local-llm:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: "CPU"
dockerfile: "Dockerfile"
platforms: "linux/amd64"
tag_name: "cpu-dev"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Extract GitHub info
run: |
echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | sed 's/[^a-zA-Z0-9._-]/-/g')" >> $GITHUB_ENV
echo "GITHUB_USER=$(echo ${{ github.actor }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
echo "REPO_NAME=$(echo ${{ github.repository }} | cut -d'/' -f 2 | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
id: extract_branch
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ env.GITHUB_USER }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./${{ matrix.dockerfile }}
platforms: ${{ matrix.platforms }}
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: |
ghcr.io/agixt/${{ env.REPO_NAME }}:${{ matrix.tag_name }}
ghcr.io/agixt/${{ env.REPO_NAME }}:${{ matrix.tag_name }}-${{ env.BRANCH_NAME }}
ghcr.io/agixt/${{ env.REPO_NAME }}:${{ matrix.tag_name }}-${{ env.BRANCH_NAME }}-${{ github.sha }}
test-local-llm:
uses: josh-xt/AGiXT/.github/workflows/operation-test-with-jupyter.yml@main
with:
notebook: tests/tests.ipynb
image: ghcr.io/agixt/local-llm:cpu-dev
port: "8091"
additional-python-dependencies: openai requests
needs: build-local-llm