Skip to content

object detection recipe and MS tests #28

object detection recipe and MS tests

object detection recipe and MS tests #28

name: object_detection
on:
pull_request:
branches:
- main
paths:
- ./recipes/computer_vision/object_detection/**
- .github/workflows/object_detection.yaml
push:
branches:
- main
paths:
- ./recipes/computer_vision/object_detection/**
- .github/workflows/object_detection.yaml
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: object_detection
COMPONENT: app
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]
- 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 }}/${{ github.event.repository.name }}/${{ env.COMPONENT }}/${{ env.IMAGE_NAME }}
tags: latest
platforms: linux/amd64, linux/arm64
containerfiles: ./recipes/computer_vision/${{ env.IMAGE_NAME }}/app/Containerfile
context: recipes/computer_vision/${{ env.IMAGE_NAME }}/app
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
- name: Install Dependencies
working-directory: ./recipes/computer_vision/${{ env.IMAGE_NAME }}
run: make install
- name: Download model
working-directory: ./model_servers/object_detection_python
run: make download-model-facebook-detr-resnet-101
# COMING SOON
# - name: Run Functional Tests
# shell: bash
# run: make functional-tests
# working-directory: ./recipes/computer_vision/${{ env.IMAGE_NAME }}
- name: Login to Registry
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: redhat-actions/[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.ref == 'refs/heads/main'
uses: redhat-actions/[email protected]
with:
image: ${{ steps.build_image.outputs.image }}
tags: ${{ steps.build_image.outputs.tags }}
registry: ${{ env.REGISTRY }}