GST C-API image builder #60
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 docker images for GST C-API | |
run-name: GST C-API image builder | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 1-5' # Run at 00:00 Mon - Fri UTC | |
pull_request: | |
paths: | |
- use-cases/gst_capi/** | |
permissions: | |
contents: read | |
jobs: | |
build-gst_capi-yolov5: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Make Docker images for gst_capi capi yolov5 ensemble | |
run: cd ./use-cases/gst_capi && make build_capi_yolov5_ensemble | |
build-gst_capi-yolov8: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Make Docker images for gst_capi yolov8 | |
run: cd ./use-cases/gst_capi && make build_capi_yolov8_ensemble |