Update meta-balena #18
Workflow file for this run
This file contains 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: Raspberry Pi 3 | |
on: | |
pull_request: | |
branches: | |
- "main" | |
- "master" | |
pull_request_target: | |
branches: | |
- "main" | |
- "master" | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+\+?r?e?v?* | |
- v20[0-9][0-9].[0-1]?[1470].[0-9]+ | |
workflow_dispatch: | |
jobs: | |
yocto: | |
name: Yocto | |
uses: balena-os/balena-yocto-scripts/.github/workflows/yocto-build-deploy.yml@0bd64809b2cce6833f8732eecdd64d32921f1b4d | |
# 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. | |
# - internal PR (true == true) ok | |
# - internal PRT (true != false) skip | |
# - fork PR (false != true) skip | |
# - fork PRT (false == false) ok | |
# - push (false == false) ok | |
# - workflow_dispatch (false == false) ok | |
# - any trigger other than PR/PRT (false == false) ok | |
if: (github.event.pull_request.head.repo.full_name == github.repository) == (github.event_name == 'pull_request') | |
secrets: inherit | |
with: | |
machine: raspberrypi3 | |
environment: balena-staging.com | |
test_matrix: > | |
[ | |
{ | |
"test_suite": "os", | |
"environment": "bm.balena-dev.com", | |
"worker_type": "testbot" | |
}, | |
{ | |
"test_suite": "cloud", | |
"environment": "bm.balena-dev.com", | |
"worker_type": "testbot", | |
"test_org": "testbot" | |
}, | |
{ | |
"test_suite": "hup", | |
"environment": "bm.balena-dev.com", | |
"worker_type": "testbot" | |
}, | |
] |