Skip to content

Build and release devimage in separate job #6

Build and release devimage in separate job

Build and release devimage in separate job #6

Workflow file for this run

name: CI/CD
on: push
jobs:
cicd:
name: CI/CD
runs-on:
- self-hosted
- v3
- yocto
container:
image: ghcr.io/hulks/meta-nao-cicd
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
path: meta-nao
- name: Checkout Yocto layers
run: kas checkout meta-nao/kas/base.yml:meta-nao/kas/hulks.yml
- name: Populate aldebaran_binaries.tar.gz
run: mkdir -p meta-nao/meta/recipes-support/aldebaran/aldebaran-binaries/ && cp /aldebaran_binaries.tar.gz meta-nao/meta/recipes-support/aldebaran/aldebaran-binaries/
- name: Build NAO image
run: kas build --target nao-image --cmd build meta-nao/kas/base.yml:meta-nao/kas/hulks.yml
- name: Build SDK (x86_64)
run: kas build --target nao-image --cmd populate_sdk meta-nao/kas/base.yml:meta-nao/kas/hulks.yml
- name: Build SDK (aarch64)
run: kas build --target nao-image --cmd populate_sdk meta-nao/kas/base.yml:meta-nao/kas/hulks.yml:meta-nao/kas/aarch64.yml
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: HULKs-OS ${{ github.ref_name }}
body: Flashable image containing HULKs-OS ${{ github.ref_name }} and the corresponding SDK with the toolchain and other tools targeting HULKs-OS, for instructions see https://hulks.de/hulk/setup/overview/
files: |
build/tmp/deploy/images/nao-v6/nao-image-HULKs-OS-${{ github.ref_name }}.ext3.gz.opn
build/tmp/deploy/sdk/HULKs-OS-x86_64-toolchain-${{ github.ref_name }}.sh
build/tmp/deploy/sdk/HULKs-OS-aarch64-toolchain-${{ github.ref_name }}.sh
fail_on_unmatched_files: true
devimage:
name: Build and release development image
needs: cicd
runs-on:
- self-hosted
- v3
container:
image: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
path: meta-nao
- name: Get latest tag
uses: actions-ecosystem/action-get-latest-tag@v1
id: latest-tag
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Build development image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: naosdk
tags: latest ${{ github.sha }} ${{ latest-tag.outputs.tag }}

Check failure on line 63 in .github/workflows/cicd.yml

View workflow run for this annotation

GitHub Actions / CI/CD

Invalid workflow file

The workflow is not valid. .github/workflows/cicd.yml (Line: 63, Col: 17): Unrecognized named-value: 'latest-tag'. Located at position 1 within expression: latest-tag.outputs.tag .github/workflows/cicd.yml (Line: 66, Col: 23): Unrecognized named-value: 'latest-tag'. Located at position 1 within expression: latest-tag.outputs.tag
archs: x86_64, aarch64
containerfiles: ./Containerfile
build-args: version=${{ latest-tag.outputs.tag }}
- name: Push development image to ghcr.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: ghcr.io/${{ github.repository_owner }}
username: ${{ github.actor }}
password: ${{ github.token }}