chatbot-rag-app: recover from timeouts on first use of ELSER #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build chatbot-rag-app image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- example-apps/chatbot-rag-app/** | |
- .github/workflows/docker-chatbot-rag-app.yml | |
- '!**/*.md' | |
pull_request: | |
branches: | |
- main | |
paths: | |
# Verify changes to the Dockerfile on PRs, tainted when we update ES. | |
- docker/docker-compose-elastic.yml | |
- example-apps/chatbot-rag-app/docker-compose.yml | |
- example-apps/chatbot-rag-app/Dockerfile | |
- .github/workflows/docker-chatbot-rag-app.yml | |
- '!**/*.md' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
packages: write | |
env: | |
IMAGE: ghcr.io/${{ github.repository }}/chatbot-rag-app | |
jobs: | |
build-image: | |
strategy: | |
matrix: | |
runner: | |
- ubuntu-24.04 | |
- ubuntu-24.04-arm | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
if: github.event_name == 'push' | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: docker/build-push-action@v6 | |
id: build | |
with: | |
context: example-apps/chatbot-rag-app | |
outputs: type=image,name=${{ env.IMAGE }},push-by-digest=true,name-canonical=true,push=${{ github.event_name == 'push' && 'true' || 'false' }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: export digest | |
if: github.event_name == 'push' | |
run: | | |
mkdir -p /tmp/digests | |
digest="${{ steps.build.outputs.digest }}" | |
touch "/tmp/digests/${digest#sha256:}" | |
- name: upload digest | |
if: github.event_name == 'push' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: digests-${{ matrix.runner }} | |
path: /tmp/digests/* | |
if-no-files-found: error | |
retention-days: 1 | |
# This tests the chatbot-rag-app image by running the create-index command. | |
# This command only relies on Elasticsearch, and verifies ELSER is working. | |
test-image: | |
strategy: | |
matrix: | |
runner: | |
- ubuntu-24.04 | |
- ubuntu-24.04-arm | |
needs: build-image | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: start elasticsearch | |
run: docker compose -f docker/docker-compose-elastic.yml up elasticsearch -d --wait --wait-timeout 120 | |
- name: test image | |
working-directory: example-apps/chatbot-rag-app | |
run: | | |
echo "Testing image ${IMAGE}" | |
cp env.example .env | |
docker compose run --rm -T create-index | |
env: | |
IMAGE: ${{ needs.build-image.outputs.digest }} | |
push-manifest: | |
runs-on: ubuntu-24.04 | |
needs: build-image | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE }} | |
tags: | | |
type=raw,latest | |
type=sha,format=long | |
- name: Download digests | |
uses: actions/download-artifact@v4 | |
with: | |
path: /tmp/digests | |
pattern: digests-* | |
merge-multiple: true | |
- run: ls /tmp/digests | |
- name: Create manifest list and push | |
working-directory: /tmp/digests | |
run: | | |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | |
$(printf '${{ env.IMAGE }}@sha256:%s ' *) | |
- name: Inspect image to verify | |
run: | | |
docker buildx imagetools inspect ${{ env.IMAGE }}:${{ steps.meta.outputs.version }} |