32 lines
827 B
YAML
32 lines
827 B
YAML
name: Step 1
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
VERSION:
|
|
required: true
|
|
type: string
|
|
jobs:
|
|
job:
|
|
name: 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: Step 1
|
|
run: |
|
|
/usr/bin/echo "Kernel: ${{ matrix.kernel }}"
|
|
/usr/bin/echo "Runner: ${{ matrix.runner }}"
|
|
/usr/bin/echo "Version: ${{ inputs.VERSION }}"
|
|
- name: Step 2
|
|
uses: https://gitea.com/actions/download-artifact@v3-node20
|
|
with:
|
|
name: test-${{ inputs.VERSION }}.tmp
|
|
skip-decompress: true
|