10
TEST / Job 1 (rpi-6.12.y, cicd.any) (push) Successful in 0s
TEST / Job 1 (rpi-6.18.y, cicd.any) (push) Successful in 1s
TEST / job2 (push) Failing after 0s

This commit is contained in:
Cantibra
2026-05-06 08:00:34 +02:00
parent 23417a21b8
commit 51d5ef7fcf
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -26,6 +26,6 @@ jobs:
job2:
needs:
- job1
uses: ./.gitea/workflow/step1.yml
uses: ./.gitea/workflows/step1.yml
with:
VERSION: ${{ needs.job1.outputs.version }}
+24
View File
@@ -0,0 +1,24 @@
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 }}"