File tree Expand file tree Collapse file tree 1 file changed +25
-26
lines changed
Expand file tree Collapse file tree 1 file changed +25
-26
lines changed Original file line number Diff line number Diff line change 11name : Test - Hosted
22
3- # Entry point for Core tests. Triggered by schedule or workflow_dispatch.
4-
53on :
6- # Allow manually triggering of the workflow.
7- workflow_dispatch : {}
8-
4+ workflow_dispatch :
5+ inputs :
6+ trigger-sha :
7+ description : ' SHA to test (optional)'
8+ required : false
9+ type : string
10+ default : ' HEAD'
11+
912jobs :
10- call-suite-core :
11- uses : ./.github/workflows/suite_core.yml
12- if : |
13- github.event_name == 'workflow_dispatch' ||
14- (github.event_name == 'schedule' && github.repository == 'tensorflow/tflite-micro')
15- with :
16- trigger-sha : ${{ github.sha }}
17- secrets :
18- tflm-bot-token : ${{ secrets.TFLM_BOT_PACKAGE_READ_TOKEN }}
13+ explore-linux :
14+ runs-on : linux-x86-n2-16
15+ container :
16+ image : us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build:latest
17+ steps :
18+ - name : Check Runner
19+ run : echo "🎉 Linux Job: Running inside the container!"
20+ - name : Verify OS
21+ run : cat /etc/os-release
1922
20- issue-on-error :
21- needs : [call-suite-core]
22- if : ${{ always() && contains(needs.*.result, 'failure') }}
23- uses : ./.github/workflows/issue_on_error.yml
24- with :
25- repo : ${{ github.repository }}
26- workflow : ${{ github.workflow }}
27- run_id : ${{ github.run_id }}
28- run_number : ${{ github.run_number }}
29- flag_label : ci:bot_issue
30- secrets :
31- token : ${{ secrets.GITHUB_TOKEN }}
23+ explore-windows :
24+ runs-on : windows-x86-n2-16
25+ steps :
26+ - name : Check Runner
27+ run : echo "🎉 Windows Job: Running directly on the VM!"
28+ - name : Verify OS
29+ run : |
30+ Get-CimInstance Win32_OperatingSystem | Select-Object Caption, Version
You can’t perform that action at this time.
0 commit comments