Raspi 3 workflow #1
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: | |
# With these triggers the Yocto jobs will run | |
# in parallel with the Flowzone jobs, which is fine for now | |
# and allows us to better control what we want to test and when. | |
# It is expected that Flowzone could fail, but yocto jobs will run. | |
pull_request: | |
types: [opened, synchronize, closed] | |
branches: | |
- "main" | |
- "master" | |
pull_request_target: | |
types: [opened, synchronize, closed] | |
branches: | |
- "main" | |
- "master" | |
jobs: | |
yocto: | |
name: Yocto | |
uses: balena-os/balena-yocto-scripts/.github/workflows/yocto-build-deploy.yml@b5b12bc2f8e08f90634d766afe30623c9899f323 | |
# prevent duplicate workflow executions for pull_request and pull_request_target | |
if: | | |
( | |
github.event.pull_request.head.repo.full_name == github.repository && | |
github.event_name == 'pull_request' | |
) || ( | |
github.event.pull_request.head.repo.full_name != github.repository && | |
github.event_name == 'pull_request_target' | |
) | |
secrets: inherit | |
with: | |
machine: raspberrypi3 | |
# Needed for testing - deafults to production | |
environment: balena-staging.com |