2023-03-17 10:47:06 +01:00
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
|
|
|
# GitHub recommends pinning actions to a commit SHA.
|
|
|
|
# To get a newer version, you will need to update the SHA.
|
|
|
|
# You can also reference a tag or branch, but the action may change without warning.
|
|
|
|
|
|
|
|
name: Publish Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2024-03-22 18:15:06 +01:00
|
|
|
concurrency:
|
2024-04-04 18:30:53 +02:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
|
2024-03-22 18:15:06 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-03-17 10:47:06 +01:00
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
2023-04-17 17:00:10 +02:00
|
|
|
if: github.event.pull_request.draft == false
|
|
|
|
|
2023-03-17 10:47:06 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
COMMIT_SHA: ${{ github.sha }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
config:
|
2023-09-14 18:47:00 +02:00
|
|
|
- { tag: "light", dockerfile: ".devops/main.Dockerfile", platforms: "linux/amd64,linux/arm64" }
|
|
|
|
- { tag: "full", dockerfile: ".devops/full.Dockerfile", platforms: "linux/amd64,linux/arm64" }
|
2024-01-28 08:55:31 +01:00
|
|
|
- { tag: "server", dockerfile: ".devops/server.Dockerfile", platforms: "linux/amd64,linux/arm64" }
|
2023-09-14 18:47:00 +02:00
|
|
|
# NOTE(canardletter): The CUDA builds on arm64 are very slow, so I
|
|
|
|
# have disabled them for now until the reason why
|
|
|
|
# is understood.
|
|
|
|
- { tag: "light-cuda", dockerfile: ".devops/main-cuda.Dockerfile", platforms: "linux/amd64" }
|
|
|
|
- { tag: "full-cuda", dockerfile: ".devops/full-cuda.Dockerfile", platforms: "linux/amd64" }
|
2024-01-28 08:55:31 +01:00
|
|
|
- { tag: "server-cuda", dockerfile: ".devops/server-cuda.Dockerfile", platforms: "linux/amd64" }
|
2023-09-14 18:47:00 +02:00
|
|
|
- { tag: "light-rocm", dockerfile: ".devops/main-rocm.Dockerfile", platforms: "linux/amd64,linux/arm64" }
|
|
|
|
- { tag: "full-rocm", dockerfile: ".devops/full-rocm.Dockerfile", platforms: "linux/amd64,linux/arm64" }
|
2024-01-28 08:55:31 +01:00
|
|
|
- { tag: "server-rocm", dockerfile: ".devops/server-rocm.Dockerfile", platforms: "linux/amd64,linux/arm64" }
|
2024-05-24 15:47:56 +02:00
|
|
|
# TODO: Disabled due to build issues https://github.com/ggerganov/llama.cpp/issues/7507
|
|
|
|
#- { tag: "light-intel", dockerfile: ".devops/main-intel.Dockerfile", platforms: "linux/amd64" }
|
|
|
|
#- { tag: "server-intel", dockerfile: ".devops/server-intel.Dockerfile", platforms: "linux/amd64" }
|
2023-03-17 10:47:06 +01:00
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2024-04-03 20:01:13 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-03-17 10:47:06 +01:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2023-03-20 18:05:20 +01:00
|
|
|
username: ${{ github.repository_owner }}
|
2023-03-17 10:47:06 +01:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-12-21 21:36:26 +01:00
|
|
|
# https://github.com/jlumbroso/free-disk-space/tree/54081f138730dfa15788a46383842cd2f914a1be#example
|
|
|
|
- name: Free Disk Space (Ubuntu)
|
|
|
|
uses: jlumbroso/free-disk-space@main
|
|
|
|
with:
|
|
|
|
# this might remove tools that are actually needed,
|
|
|
|
# if set to "true" but frees about 6 GB
|
|
|
|
tool-cache: false
|
|
|
|
|
|
|
|
# all of these default to true, but feel free to set to
|
|
|
|
# "false" if necessary for your workflow
|
|
|
|
android: true
|
|
|
|
dotnet: true
|
|
|
|
haskell: true
|
|
|
|
large-packages: true
|
|
|
|
docker-images: true
|
|
|
|
swap-storage: true
|
|
|
|
|
2023-12-22 07:56:34 +01:00
|
|
|
- name: Determine tag name
|
|
|
|
id: tag
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
|
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
|
if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
|
echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
|
echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
|
|
|
|
2024-04-14 13:12:36 +02:00
|
|
|
- name: Downcase github.repository_owner
|
|
|
|
run: |
|
|
|
|
echo "repository_owner_lowercase=${GITHUB_REPOSITORY_OWNER@L}" >> $GITHUB_ENV
|
|
|
|
env:
|
|
|
|
GITHUB_REPOSITORY_OWNER: '${{ github.repository_owner }}'
|
|
|
|
|
2023-03-17 10:47:06 +01:00
|
|
|
- name: Build and push Docker image (versioned)
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
2023-09-14 18:47:00 +02:00
|
|
|
platforms: ${{ matrix.config.platforms }}
|
2024-04-14 13:12:36 +02:00
|
|
|
tags: "ghcr.io/${{ env.repository_owner_lowercase }}/llama.cpp:${{ matrix.config.tag }}-${{ env.COMMIT_SHA }}"
|
2023-03-17 10:47:06 +01:00
|
|
|
file: ${{ matrix.config.dockerfile }}
|
|
|
|
|
|
|
|
- name: Build and push Docker image (tagged)
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: ${{ github.event_name == 'push' }}
|
2023-09-14 18:47:00 +02:00
|
|
|
platforms: ${{ matrix.config.platforms }}
|
2024-04-14 13:12:36 +02:00
|
|
|
tags: "ghcr.io/${{ env.repository_owner_lowercase }}/llama.cpp:${{ matrix.config.tag }},ghcr.io/${{ env.repository_owner_lowercase }}/llama.cpp:${{ matrix.config.tag }}-${{ steps.tag.outputs.name }}"
|
2023-04-11 21:45:44 +02:00
|
|
|
file: ${{ matrix.config.dockerfile }}
|