Files
ATEST/.gitea/workflows/step1.yml
T
Cantibra bde4f89e51
TEST / Job 1 (rpi-6.12.y, cicd.any) (push) Successful in 2s
TEST / Job 1 (rpi-6.18.y, cicd.any) (push) Successful in 1s
TEST / job2 (push) Successful in 3s
16
2026-05-06 08:37:34 +02:00

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