mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-04 19:27:46 +00:00
30 lines
754 B
YAML
30 lines
754 B
YAML
name: Suite - Hexagon
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
trigger-sha:
|
|
required: true
|
|
type: string
|
|
secrets:
|
|
tflm-bot-token:
|
|
required: true
|
|
|
|
jobs:
|
|
hexagon_build:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
name: Hexagon Build Test
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
ref: ${{ inputs.trigger-sha }}
|
|
allow-unsafe-pr-checkout: true
|
|
- run: rm -rf .git
|
|
- name: Hexagon Build Test
|
|
env:
|
|
TFLM_BOT_TOKEN: ${{ secrets.tflm-bot-token }}
|
|
run: |
|
|
tensorflow/lite/micro/tools/ci_build/docker_run_tflm.sh \
|
|
ghcr.io/tflm-bot/hexagon:0.4 \
|
|
tensorflow/lite/micro/tools/ci_build/test_hexagon.sh tflite-micro/
|