mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-13 01:07:57 -05:00
117 lines
3.7 KiB
YAML
117 lines
3.7 KiB
YAML
name: build container image
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- 'pyproject.toml'
|
|
- '.dockerignore'
|
|
- 'invokeai/**'
|
|
- 'docker/Dockerfile'
|
|
- 'docker/docker-entrypoint.sh'
|
|
- 'workflows/build-container.yml'
|
|
tags:
|
|
- 'v*.*.*'
|
|
workflow_dispatch:
|
|
inputs:
|
|
push-to-registry:
|
|
description: Push the built image to the container registry
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
docker:
|
|
if: github.event.pull_request.draft == false
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
gpu-driver:
|
|
- cuda
|
|
- cpu
|
|
- rocm
|
|
runs-on: ubuntu-latest
|
|
name: ${{ matrix.gpu-driver }}
|
|
env:
|
|
# torch/arm64 does not support GPU currently, so arm64 builds
|
|
# would not be GPU-accelerated.
|
|
# re-enable arm64 if there is sufficient demand.
|
|
# PLATFORMS: 'linux/amd64,linux/arm64'
|
|
PLATFORMS: 'linux/amd64'
|
|
steps:
|
|
- name: Free up more disk space on the runner
|
|
# https://github.com/actions/runner-images/issues/2840#issuecomment-1284059930
|
|
# the /mnt dir has 70GBs of free space
|
|
# /dev/sda1 74G 28K 70G 1% /mnt
|
|
# According to some online posts the /mnt is not always there, so checking before setting docker to use it
|
|
run: |
|
|
echo "----- Free space before cleanup"
|
|
df -h
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
sudo swapoff /mnt/swapfile
|
|
sudo rm -rf /mnt/swapfile
|
|
if [ -d /mnt ]; then
|
|
sudo chmod -R 777 /mnt
|
|
echo '{"data-root": "/mnt/docker-root"}' | sudo tee /etc/docker/daemon.json
|
|
sudo systemctl restart docker
|
|
fi
|
|
echo "----- Free space after cleanup"
|
|
df -h
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
images: |
|
|
ghcr.io/${{ github.repository }}
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=ref,event=tag
|
|
type=pep440,pattern={{version}}
|
|
type=pep440,pattern={{major}}.{{minor}}
|
|
type=pep440,pattern={{major}}
|
|
type=sha,enable=true,prefix=sha-,format=short
|
|
flavor: |
|
|
latest=${{ matrix.gpu-driver == 'cuda' && github.ref == 'refs/heads/main' }}
|
|
suffix=-${{ matrix.gpu-driver }},onlatest=false
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build container
|
|
timeout-minutes: 40
|
|
id: docker_build
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: docker/Dockerfile
|
|
platforms: ${{ env.PLATFORMS }}
|
|
build-args: |
|
|
GPU_DRIVER=${{ matrix.gpu-driver }}
|
|
push: ${{ github.ref == 'refs/heads/main' || github.ref_type == 'tag' || github.event.inputs.push-to-registry }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
# cache-from: |
|
|
# type=gha,scope=${{ github.ref_name }}-${{ matrix.gpu-driver }}
|
|
# type=gha,scope=main-${{ matrix.gpu-driver }}
|
|
# cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-${{ matrix.gpu-driver }}
|