on: workflow_call: inputs: VERSION: required: true type: string jobs: job: strategy: matrix: include: - kernel: bcm2711_defconfig runner: cicd.bookworm - kernel: bcm2712_defconfig runner: cicd.bookworm - kernel: bcm2712_pve_defconfig runner: cicd.bookworm runs-on: ${{ matrix.runner }} steps: - name: step1 run: | /usr/bin/echo "Kernel: ${{ matrix.kernel }}" /usr/bin/echo "Runner: ${{ matrix.runner }}" /usr/bin/echo "Version: ${{ inputs.VERSION }}"