c56bef871b
Sync docs with Docusaurus / sync (push) Waiting to run
Tests / Check if changed (push) Waiting to run
Tests / format (push) Blocked by required conditions
Tests / check-imports (push) Blocked by required conditions
Tests / Unit / macos-latest (push) Blocked by required conditions
Tests / Unit / ubuntu-latest (push) Blocked by required conditions
Tests / Unit / windows-latest (push) Blocked by required conditions
Tests / mypy (push) Blocked by required conditions
Tests / Integration / ubuntu-latest (push) Blocked by required conditions
Tests / Integration / macos-latest (push) Blocked by required conditions
Tests / Integration / windows-latest (push) Blocked by required conditions
Tests / notify-slack-on-failure (push) Blocked by required conditions
Tests / Mark tests as completed (push) Blocked by required conditions
Docker image release / Build base image (push) Waiting to run
CodeQL / Analyze (python) (push) Has been cancelled
Update Platform Components Table / update (push) Has been cancelled
89 lines
3.0 KiB
YAML
89 lines
3.0 KiB
YAML
name: Docker image release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/workflows/docker_release.yml'
|
|
- 'docker/**'
|
|
- 'haystack/**'
|
|
- 'pyproject.toml'
|
|
- 'VERSION.txt'
|
|
tags:
|
|
- "v2.[0-9]+.[0-9]+*"
|
|
|
|
env:
|
|
DOCKER_REPO_NAME: deepset/haystack
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build-and-push:
|
|
name: Build base image
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'deepset-ai'
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@96fe6ef7f33517b61c61be40b68a1882f3264fb8 # v4.2.0
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USER }}
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0
|
|
with:
|
|
images: $DOCKER_REPO_NAME
|
|
|
|
- name: Detect stable version
|
|
run: |
|
|
if [[ "${{ steps.meta.outputs.version }}" =~ ^v2\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "IS_STABLE=true" >> "$GITHUB_ENV"
|
|
echo "Stable version detected"
|
|
else
|
|
echo "Not a stable version"
|
|
fi
|
|
- name: Build base images
|
|
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
|
env:
|
|
IMAGE_TAG_SUFFIX: ${{ steps.meta.outputs.version }}
|
|
HAYSTACK_VERSION: ${{ steps.meta.outputs.version }}
|
|
with:
|
|
source: ./docker
|
|
targets: base
|
|
push: true
|
|
|
|
- name: Test base image
|
|
run: |
|
|
EXPECTED_VERSION=$(cat VERSION.txt)
|
|
if [[ $EXPECTED_VERSION == *"-"* ]]; then
|
|
EXPECTED_VERSION=$(cut -d '-' -f 1 < VERSION.txt)$(cut -d '-' -f 2 < VERSION.txt)
|
|
fi
|
|
TAG="base-${{ steps.meta.outputs.version }}"
|
|
|
|
PLATFORM="linux/amd64"
|
|
VERSION=$(docker run --platform "$PLATFORM" --rm "deepset/haystack:$TAG" python -c"from haystack.version import __version__; print(__version__)")
|
|
[[ "$VERSION" = "$EXPECTED_VERSION" ]] || echo "::error 'Haystack version in deepset/haystack:$TAG image for $PLATFORM is different from expected'"
|
|
|
|
PLATFORM="linux/arm64"
|
|
VERSION=$(docker run --platform "$PLATFORM" --rm "deepset/haystack:$TAG" python -c"from haystack.version import __version__; print(__version__)")
|
|
[[ "$VERSION" = "$EXPECTED_VERSION" ]] || echo "::error 'Haystack version in deepset/haystack:$TAG image for $PLATFORM is different from expected'"
|
|
|
|
# Remove image after test to avoid filling the GitHub runner and prevent its failure
|
|
docker rmi "deepset/haystack:$TAG"
|