Skip to content

[TEST] Dummy change, no KVM #7

[TEST] Dummy change, no KVM

[TEST] Dummy change, no KVM #7

Workflow file for this run

name: Intel NUC (No KVM)
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
# Pin the workflow to a specific commit to prevent unexpected changes while
# I am learning.
uses: balena-os/balena-yocto-scripts/.github/workflows/yocto-build-deploy.yml@v1.25.10
# 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: genericx86-64
environment: balena-staging.com
deploy-ami: false
deploy-esr: false
deploy-s3: false
deploy-hostapp: false
test_matrix: >
{
"test_suite": ["os","cloud","hup"],
"environment": ["bm.balena-dev.com"],
"worker_type": ["testbot"],
"runs_on": [["ubuntu-latest"]]
}