9
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 0s
TEST / job2 (push) Failing after 0s

This commit is contained in:
Cantibra
2026-05-06 07:59:10 +02:00
parent 00cad1fc7f
commit 23417a21b8
2 changed files with 3 additions and 14 deletions
@@ -1,4 +1,3 @@
name: Step 1
on: on:
workflow_call: workflow_call:
inputs: inputs:
@@ -6,8 +5,7 @@ on:
required: true required: true
type: string type: string
jobs: jobs:
job1: job:
name: Job 1
strategy: strategy:
matrix: matrix:
include: include:
@@ -19,7 +17,7 @@ jobs:
runner: cicd.bookworm runner: cicd.bookworm
runs-on: ${{ matrix.runner }} runs-on: ${{ matrix.runner }}
steps: steps:
- name: Step 1 - name: step1
run: | run: |
/usr/bin/echo "Kernel: ${{ matrix.kernel }}" /usr/bin/echo "Kernel: ${{ matrix.kernel }}"
/usr/bin/echo "Runner: ${{ matrix.runner }}" /usr/bin/echo "Runner: ${{ matrix.runner }}"
+1 -10
View File
@@ -23,18 +23,9 @@ jobs:
/usr/bin/echo "Version: ${VERSION}" /usr/bin/echo "Version: ${VERSION}"
/usr/bin/echo "Branch: ${{ matrix.branch }}" /usr/bin/echo "Branch: ${{ matrix.branch }}"
/usr/bin/echo "Runner: ${{ matrix.runner }}" /usr/bin/echo "Runner: ${{ matrix.runner }}"
varjob:
name: Varjob
needs:
- job1
runs-on: cicd.any
steps:
- name: Step 1 (Varjob)
run: |
/usr/bin/echo "${{ needs.job1.outputs.version }}"
job2: job2:
needs: needs:
- job1 - job1
uses: ./.gitea/workflows/step1.yml uses: ./.gitea/workflow/step1.yml
with: with:
VERSION: ${{ needs.job1.outputs.version }} VERSION: ${{ needs.job1.outputs.version }}