ci: lock all kas repos #16
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: | |
compile: | |
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 | |
- 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 dump --update --lock --inplace ci/base.yml | |
kas build ci/${{ matrix.machine }}.yml | |
mv ci/base.lock.yml ${PERSISTENT_DIR} |