mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-03 02:37:36 +00:00
37 lines
1,000 B
YAML
37 lines
1,000 B
YAML
name: Run-Windows
|
|
|
|
# Entry point for Windows tests. Triggered by schedule or workflow_dispatch.
|
|
|
|
on:
|
|
schedule:
|
|
# 10am UTC is 3am or 4am PT depending on daylight savings.
|
|
- cron: '0 10 * * *'
|
|
|
|
# Allow manually triggering of the workflow.
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
call-test-windows:
|
|
uses: ./.github/workflows/test_windows.yml
|
|
if: |
|
|
github.event_name == 'workflow_dispatch' ||
|
|
(github.event_name == 'schedule' && github.repository == 'tensorflow/tflite-micro')
|
|
with:
|
|
trigger-sha: ${{ github.sha }}
|
|
|
|
issue-on-error:
|
|
needs: [call-test-windows]
|
|
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: bot:issue
|
|
secrets:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|