build-yocto: run the yocto-run-checks in parallel with compile warm u… #943
This file contains hidden or 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 on push | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| checks: write | |
| pull-requests: write | |
| contents: read | |
| packages: read | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-yocto.yml | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| needs: [build] | |
| secrets: inherit | |
| with: | |
| build_id: ${{ github.run_id }} | |
| publish-test-results: | |
| uses: ./.github/workflows/publish-results.yml | |
| needs: test | |
| secrets: inherit | |
| with: | |
| workflow_id: ${{ github.run_id }} | |
| event_name: ${{ github.event_name }} | |
| event_file: ${{ github.event_path }} | |
| commit: ${{ github.sha }} |