Skip to content

Commit

Permalink
ci: add workflow for yocto-check-layer
Browse files Browse the repository at this point in the history
Add PR-based workflow for calling yocto-check-layer on meta-qcom-hwe.

Signed-off-by: Ricardo Salveti <[email protected]>
  • Loading branch information
ricardosalveti committed Sep 12, 2024
1 parent 4220541 commit 2d8dbe4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-layer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Yocto Check Layer

on:
pull_request:

jobs:
yocto-check-layer:
runs-on: [self-hosted, x86]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run yocto-check-layer
run: |
mkdir -p ../build
cd ../build
kas shell ../meta-qcom-hwe/ci/qcs6490-rb3gen2-core-kit.yml --command "yocto-check-layer-wrapper `pwd`/../meta-qcom-hwe --dependency `pwd`/poky/meta `pwd`/meta-qcom --no-auto-dependency"

0 comments on commit 2d8dbe4

Please sign in to comment.