Update balena-yocto-scripts digest to aa7f0ca #1505
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: Compulab UCM-iMX93 Devkit | |
| on: | |
| # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore | |
| # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| # ESR branches glob pattern | |
| #- 20[0-9][0-9].[0-1]?[1470].x | |
| pull_request_target: | |
| branches: | |
| - main | |
| - master | |
| push: | |
| tags: | |
| # Semver tags glob pattern (includes ESR in format v20YY.MM.PATCH) | |
| - v[0-9]+.[0-9]+.[0-9]+\+?r?e?v?* | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| inputs: | |
| force-finalize: | |
| description: Force finalize of the build (implicitly enables hostapp and S3 deployments) | |
| required: false | |
| type: boolean | |
| default: false | |
| deploy-environment: | |
| description: Environment to use for build and deploy | |
| required: false | |
| type: string | |
| default: balena-staging.com | |
| meta-balena-ref: | |
| description: meta-balena ref if not the currently pinned version | |
| required: false | |
| type: string | |
| default: '' | |
| # Allow this workflow to be called by other workflows | |
| workflow_call: | |
| inputs: | |
| deploy-environment: | |
| description: Environment to use for build and deploy | |
| required: false | |
| type: string | |
| default: balena-staging.com | |
| meta-balena-ref: | |
| description: meta-balena ref if not the currently pinned version | |
| required: false | |
| type: string | |
| default: '' | |
| device-repo-ref: | |
| description: device-repo ref if not the currently pinned version | |
| required: false | |
| type: string | |
| default: master | |
| test_matrix: | |
| description: "JSON Leviathan test matrix to use for testing. No tests will be run if not provided." | |
| required: false | |
| type: string | |
| # Use a string with an empty JSON object as the default so it evaluates to "truthy" when no test_matrix is defined in a caller workflow | |
| # For PR tiggered workflows, test_matrix isn't a defined input - so the workflow will default to the test matrix defined in the "env" | |
| default: '{}' | |
| # worker_type defaults to testbot | |
| # worker_fleets defaults to balena/testbot-rig,balena/testbot-rig-partners,balena/testbot-rig-x86,balena/testbot-rig-partners-x86 | |
| env: | |
| test_matrix: > | |
| { | |
| "test_suite": ["os","cloud","hup"], | |
| "environment": ["bm.balena-dev.com"], | |
| "runs_on": [["ubuntu-latest"]] | |
| } | |
| permissions: | |
| id-token: write # This is required for requesting the JWT #https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services#requesting-the-access-token | |
| actions: read # We are fetching workflow run results of a merge commit when workflow is triggered by new tag, to see if tests pass | |
| pull-requests: write # Read is required to fetch the PR that merged, in order to get the test results. Write is required to create PR comments for workflow approvals. | |
| packages: read | |
| contents: read | |
| jobs: | |
| get_inputs: | |
| name: Get inputs | |
| runs-on: ubuntu-latest | |
| # Prevent duplicate workflow executions for pull_request (PR) and pull_request_target (PRT) events. | |
| # Both PR and PRT will be triggered for the same pull request, whether it is internal or from a fork. | |
| # This condition will prevent the workflow from running twice for the same pull request while | |
| # still allowing it to run for all other event types. | |
| if: (github.event.pull_request.head.repo.full_name == github.repository) == (github.event_name == 'pull_request') | |
| outputs: | |
| test_matrix: ${{ inputs.test_matrix || env.test_matrix }} | |
| steps: | |
| - run: echo "Hello World!" | |
| yocto: | |
| name: Yocto | |
| uses: balena-os/balena-yocto-scripts/.github/workflows/yocto-build-deploy.yml@803cf087ada25c3ea70c8a772b0cb6a635b64198 | |
| needs: get_inputs | |
| # Prevent duplicate workflow executions for pull_request (PR) and pull_request_target (PRT) events. | |
| # Both PR and PRT will be triggered for the same pull request, whether it is internal or from a fork. | |
| # This condition will prevent the workflow from running twice for the same pull request while | |
| # still allowing it to run for all other event types. | |
| if: (github.event.pull_request.head.repo.full_name == github.repository) == (github.event_name == 'pull_request') | |
| secrets: inherit | |
| with: | |
| machine: ucm-imx93 | |
| # Hardcode the device repo in case this workflow is called by another workflow | |
| device-repo: balena-os/balena-compulab-imx9 | |
| device-repo-ref: ${{ inputs.device-repo-ref || github.ref }} | |
| # Allow overriding the meta-balena ref for workflow dispatch events | |
| meta-balena-ref: ${{ inputs.meta-balena-ref || '' }} | |
| test_matrix: ${{ needs.get_inputs.outputs.test_matrix }} | |
| # Allow manual workflow runs to force finalize without checking previous test runs | |
| force-finalize: ${{ inputs.force-finalize || false }} | |
| # Default to balena-staging.com for workflow dispatch, but balena-cloud.com for other events | |
| deploy-environment: ${{ inputs.deploy-environment || 'balena-cloud.com' }} |