Adjust recipes to add compatibility with vlp_v3.0.6 and latest commit of meta-mistylwb5p #185
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 Image | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
paths-ignore: [ '**.md', '**.pdf', '**.yml' ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
paths-ignore: [ '**.md', '**.pdf', '**.yml' ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-yocto: | |
runs-on: DC02 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: MistySOM/rzg2l | |
path: rzg2l | |
ref: develop | |
submodules: true | |
- uses: actions/checkout@v4 | |
with: | |
path: meta-mistysom | |
- run: | | |
rm -rf rzg2l/Build/meta-mistysom | |
cp -r meta-mistysom rzg2l/Build/ | |
- name: Build the Docker image | |
run: cd rzg2l/Build && ./build.sh; | |
- name: Run the Docker image and build output files with SDK | |
run: cd rzg2l/Build && ./run.sh -c /home/github/rzg2l-cache; | |
- name: List files that are generated | |
run: ls -lah rzg2l/Build/output/images/smarc-rzg2l/ | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output-files | |
path: rzg2l/Build/output/images/smarc-rzg2l/mistysom-image-smarc-rzg2l.wic.bz2 |