Skip to content

Test - Hosted

Test - Hosted #1

Workflow file for this run

name: Test - Hosted
# Entry point for Core tests. Triggered by schedule or workflow_dispatch.
on:
# Allow manually triggering of the workflow.
workflow_dispatch: {}
jobs:
call-suite-core:
uses: ./.github/workflows/suite_core.yml
if: |
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'schedule' && github.repository == 'tensorflow/tflite-micro')
with:
trigger-sha: ${{ github.sha }}
secrets:
tflm-bot-token: ${{ secrets.TFLM_BOT_PACKAGE_READ_TOKEN }}
issue-on-error:
needs: [call-suite-core]
if: ${{ always() && contains(needs.*.result, 'failure') }}
uses: ./.github/workflows/issue_on_error.yml
with:
repo: ${{ github.repository }}
workflow: ${{ github.workflow }}
run_id: ${{ github.run_id }}
run_number: ${{ github.run_number }}
flag_label: ci:bot_issue
secrets:
token: ${{ secrets.GITHUB_TOKEN }}