Build yocto: cleanup #35
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: Build Yocto | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
kas-lock: | |
runs-on: [self-hosted, x86] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run kas lock | |
run: | | |
kas dump --update --lock --inplace ci/base.yml | |
- name: Prepare artifact | |
run: | | |
mkdir ci/lock | |
mv -v ci/*.lock.yml ci/lock | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: kas-lock | |
path: ci/lock | |
yocto-check-layer: | |
needs: kas-lock | |
runs-on: [self-hosted, x86] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: kas-lock | |
path: ci/lock | |
- name: Prepare artifact | |
run: | | |
mv -v ci/lock/* ci | |
- name: Run yocto-check-layer | |
run: | | |
ci/yocto-check-layer.sh | |
compile: | |
needs: kas-lock | |
strategy: | |
fail-fast: true | |
matrix: | |
machine: | |
- qcm6490-idp | |
- qcs6490-rb3gen2-core-kit | |
- sa8775p-ride-sx | |
runs-on: [self-hosted, x86] | |
name: ${{ matrix.machine }}/poky/systemd | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: kas-lock | |
path: ci/lock | |
- name: Prepare artifact | |
run: | | |
mv -v ci/lock/* ci | |
- name: Kas build | |
run: | | |
export PERSISTENT_DIR=/srv/gh-runners/quic-yocto | |
export DL_DIR=${PERSISTENT_DIR}/downloads | |
export SSTATE_DIR=${PERSISTENT_DIR}/sstate-cache | |
mkdir -p $DL_DIR | |
mkdir -p $SSTATE_DIR | |
kas build ci/${{ matrix.machine }}.yml |