Trigger the integration-tests job on the origin repo #389
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: chatbot | |
on: | |
pull_request: | |
branches: | |
- main | |
# paths: | |
# - ./recipes/natural_language_processing/chatbot/** | |
# - .github/workflows/chatbot.yaml | |
push: | |
branches: | |
- main | |
# paths: | |
# - ./recipes/natural_language_processing/chatbot/** | |
# - .github/workflows/chatbot.yaml | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository_owner }}/chatbot | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
services: | |
registry: | |
image: registry:2.8.3 | |
ports: | |
- 5000:5000 | |
steps: | |
- uses: actions/[email protected] | |
# required for multi-arch builds | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build Image | |
id: build_image | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: latest | |
platforms: linux/amd64, linux/arm64 | |
containerfiles: ./recipes/natural_language_processing/chatbot/builds/Containerfile | |
context: recipes/natural_language_processing/chatbot | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
working-directory: ./recipes/natural_language_processing/chatbot | |
run: make install | |
- name: Run Functional Tests | |
working-directory: ./recipes/natural_language_processing/chatbot | |
run: make functional_tests | |
- name: Login to github container registry | |
if: > | |
(github.event_name == 'push' || github.event_name == 'schedule') && | |
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push image | |
id: push_image | |
if: > | |
(github.event_name == 'push' || github.event_name == 'schedule') && | |
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
registry: ${{ env.REGISTRY }} |